| Value | Description |
val create : int -> float -> rowvec |
Create by constant initialization
|
val get : rowvec -> int -> float |
Get an element of a column vector
|
val init : int -> (int -> float) -> rowvec |
Create by comprehension
|
val length : rowvec -> int |
Get the dimensions (number of rows) of a column rowvec.
|
val set : rowvec -> int -> float -> unit |
Set an element of a column rowvec
|
val transpose : rowvec -> vector | |