| Value | Description |
val create : int -> 'a -> RowVector<'a> |
Create by constant initialization
|
val get : RowVector<'a> -> int -> 'a |
Get an element from a column vector.
|
val init : int -> (int -> 'a) -> RowVector<'a> |
Create by comprehension
|
val length : RowVector<'a> -> int |
Get the number of rows in a column vector.
|
val set : RowVector<'a> -> int -> 'a -> unit |
Set an element in a column vector.
|
val transpose : RowVector<'a> -> Vector<'a> |
Transpose the row vector
|