| Value | Description |
val complex : r:float -> i:float -> complex |
Create a complex number x+ij using rectangular coordinates
|
val M2S : matrix -> float |
Convert a matrix to a scalar.
|
val M2V : matrix -> vector |
Convert a matrix to a column vector.
|
val matrix : float list list -> matrix |
Create a matrix from lists of floats.
|
val rowvec : float list -> rowvec |
Create a row vector from lists of floats.
|
val S : float -> matrix |
Create a matrix from a scalar.
|
val V : vector -> matrix |
Create a matrix from a column vector.
|
val vector : float list -> vector |
Create a column vector from lists of floats.
|