Java org.apache.commons.math.complex ComplexFormat fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math.complex ComplexFormat fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math.complex ComplexFormat.

The text is from its open source code.

Constructor

ComplexFormat(NumberFormat format)
Create an instance with a custom number format for both real and imaginary parts.
ComplexFormat(String imaginaryCharacter)
Create an instance with a custom imaginary character, and the default number format for both real and imaginary parts.
ComplexFormat()
Create an instance with the default imaginary character, 'i', and the default number format for both real and imaginary parts.

Method

StringformatComplex(Complex c)
This static method calls #format(Object) on a default instance of ComplexFormat.
Complexparse(String source)
Parses a string to produce a Complex object.