valueOf(List<Complex> elements) Returns a new vector holding the elements from the specified
collection.
Parameters: elements - the collection of floating-points numbers.
Returns the imaginary value of a complex number from this vector (fast).
Parameters: i - the complex number index. the real value of complex at i. throws: IndexOutOfBoundsException - (i < 0) || (i >= dimension())
Returns the real value of a complex number from this vector (fast).
Parameters: i - the complex number index. the real value of complex at i. throws: IndexOutOfBoundsException - (i < 0) || (i >= dimension())
Returns a new vector holding the specified complex numbers.
Parameters: elements - the complex numbers elements. the vector having the specified complex numbers.
Returns a new vector holding the elements from the specified
collection.
Parameters: elements - the collection of floating-points numbers. the vector having the specified elements.