| Value | Description |
val copy : RowVector<'T> -> RowVector<'T> | |
val create : int -> 'T -> RowVector<'T> |
Create by constant initialization
|
val get : RowVector<'T> -> int -> 'T |
Get an element from a column vector.
|
val init : int -> (int -> 'T) -> RowVector<'T> |
Create by comprehension
|
val length : RowVector<'T> -> int |
Get the number of rows in a column vector.
|
val of_array : 'T [] -> RowVector<'T> |
Create a row vector from an array of elements
|
val of_list : 'T list -> RowVector<'T> |
Create a row vector from a list of elements
|
val of_seq : seq<'T> -> RowVector<'T> |
Create a row vector from a sequence of elements
|
val set : RowVector<'T> -> int -> 'T -> unit |
Set an element in a column vector.
|
val to_array : RowVector<'T> -> 'T [] |
Return a new array containing a copy of the elements of the given vector
|
val transpose : RowVector<'T> -> Vector<'T> |
Transpose the row vector
|
val zero : int -> RowVector<'T> |
Return a vector of the given length where every entry is zero.
|