Value | Description |
val copy : RowVector<'a> -> RowVector<'a> | |
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 of_array : 'a array -> RowVector<'a> |
Create a row vector from an array of elements
|
val of_list : 'a list -> RowVector<'a> |
Create a row vector from a list of elements
|
val of_seq : #seq<'a> -> RowVector<'a> |
Create a row vector from a sequence of elements
|
val set : RowVector<'a> -> int -> 'a -> unit |
Set an element in a column vector.
|
val to_array : RowVector<'a> -> 'a array |
Return a new array containing a copy of the elements of the given vector
|
val transpose : RowVector<'a> -> Vector<'a> |
Transpose the row vector
|
val zero : int -> RowVector<'a> |
Return a vector of the given length where every entry is zero.
|