Example usage for org.apache.commons.math3.complex Complex equals

List of usage examples for org.apache.commons.math3.complex Complex equals

Introduction

In this page you can find the example usage for org.apache.commons.math3.complex Complex equals.

Prototype

public static boolean equals(Complex x, Complex y) 

Source Link

Document

Returns true iff the values are equal as defined by #equals(Complex,Complex,int) equals(x, y, 1) .

Usage

From source file:org.nmrfx.processor.gui.ComplexOperationItem.java

@Override
public boolean isDefault() {
    return Complex.equals(value, defaultValue);
}