Type/Module | Description |
Function or value | Description |
|
Builds a new vector whose elements are the results of adding the corresponding elements of the two vectors pairwise. The two input vectors must have the same lengths, otherwise ArgumentException is raised.
Example
|
|
Example
|
Full Usage:
countBy projection vector
Parameters:
'a -> bool
vector : Vector<'a>
Returns: (bool * int) list
|
|
Full Usage:
countR (arg1, arg2)
Parameters:
int
arg1 : int
Returns: int
|
|
Full Usage:
countRF (arg1, arg2, arg3)
Parameters:
float
arg1 : float
arg2 : float
Returns: int
|
|
Example
|
|
|
Example
|
|
|
|
|
|
Builds a new vector whose elements are the results of multiplying the corresponding elements of the given vectors. The two input vectors must have the same lengths, otherwise ArgumentException is raised.
Example
|
|
|
|
Example
|
Full Usage:
exists predicate vector
Parameters:
float -> bool
vector : vector
Returns: bool
|
|
Full Usage:
existsi predicate vector
Parameters:
int -> float -> bool
vector : vector
Returns: bool
|
|
Full Usage:
fold folder state vector
Parameters:
'State -> float -> 'State
-
state : 'State
-
vector : vector
-
Returns: 'State
|
Applies a function to each element of the vector, threading an accumulator argument through the computation.
Example
|
Full Usage:
foldi folder state vector
Parameters:
int -> 'State -> float -> 'State
-
state : 'State
-
vector : vector
-
Returns: 'State
|
Applies a function to each element of the vector and their corresponding index, threading an accumulator argument through the computation.
Example
|
Full Usage:
forall predicate vector
Parameters:
float -> bool
vector : vector
Returns: bool
|
|
Full Usage:
foralli predicate vector
Parameters:
int -> float -> bool
vector : vector
Returns: bool
|
|
|
Example
|
|
calculates the coefficient of variation based on the sample standard deviations with a given number of replicates present in the sequence
Example
|
|
Example
|
|
Example
|
Full Usage:
idxR (arg1, arg2) i
Parameters:
int
arg1 : int
i : int
Returns: int
|
|
Full Usage:
idxRF (arg1, arg2, arg3) i
Parameters:
float
arg1 : float
arg2 : float
i : int
Returns: float
|
|
Full Usage:
init count initializer
Parameters:
int
-
initializer : int -> float
-
Returns: Vector<float>
|
Example
|
|
Example
|
|
Example
|
|
Example
|
|
Example
|
|
Applies the given function to each of the elements of the vector and their corresponding index. No new vector is created.
Example
|
|
Example
|
|
Example
|
|
|
|
Example
|
|
Builds a new vector whose elements are the results of applying the given function to each of the elements of the vector.
Example
|
|
Builds a new vector whose elements are the results of applying the given function to the corresponding elements of the two vectors pairwise. The two input vectors must have the same lengths, otherwise ArgumentException is raised.
Example
|
|
Builds a new vector whose elements are the results of applying the given function to the corresponding elements of the two vectors pairwise. The two input vectors must have the same lengths, otherwise ArgumentException is raised.
Example
|
|
Builds a new vector whose elements are the results of applying the given function to each of the elements of the vector and their corresponding index.
Example
|
|
Example
|
Full Usage:
median items
Parameters:
Vector<^T>
-
Returns: ^T
Modifiers: inline Type parameters: ^T, ^a |
Example
|
|
Example
|
|
|
|
|
|
Example
|
|
Builds a new vector whose elements are the results of multiplying -1 with each of the elements of the vector.
Example
|
|
Example
|
|
Example
|
|
Example
|
|
Example
|
|
Example
|
|
Example
|
|
Example
|
|
|
|
|
|
Example
|
|
Builds a new vector whose elements are the results of multiplying the given scalar with each of the elements of the vector.
Example
|
|
Example
|
|
Applies the given function to each of the indexes of the vector.
|
|
Splits a vector according to given indices. Returns (vector including values according to indices, rest)
Example
|
Full Usage:
stats items
Parameters:
Vector<^T>
-
Returns: SummaryStats<^T>
Modifiers: inline Type parameters: ^T, ^a, ^b |
Example
|
|
Builds a new vector whose elements are the results of substracting the corresponding elements of vector2 from vector1. The two input vectors must have the same lengths, otherwise ArgumentException is raised.
Example
|
|
Example
|
|
Example
|
|
Builds a new vector whose elements are the results of exponentiating each of the elements of the vector with n.
Example
|
|
|
|
Example
|