Vector.Map Into Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Map | Applies a function to the elements of a vector. |
Map | Applies a function to the corresponding elements of two vectors and returns the result in a third vector. |
MapInto<T, U>(Func<T, U>, Vector<T>, Vector<U>)
Applies a function to the elements of a vector.
public static Vector<U> MapInto<T, U>(
Func<T, U> function,
Vector<T> vector,
Vector<U>? result
)
Parameters
- function Func<T, U>
- A delegate that represents a function of one variable
- vector Vector<T>
- A vector whose elements to apply function to.
- result Vector<U>
- The vector that is to hold the result. May be null.
Type Parameters
- T
- U
Return Value
Vector<U>The vector result.
Exceptions
Argument | function is null. |
MapInto<T, U, V>(Func<T, U, V>, Vector<T>, Vector<U>, Vector<V>)
Applies a function to the corresponding elements of two vectors
and returns the result in a third vector.
public static Vector<V> MapInto<T, U, V>(
Func<T, U, V> function,
Vector<T> first,
Vector<U> second,
Vector<V>? result
)
Parameters
- function Func<T, U, V>
- A delegate that represents a function of two variables
- first Vector<T>
- A vector whose elements serve as the first argument to the function.
- second Vector<U>
- A vector whose elements serve as the second argument to the function.
- result Vector<V>
- The vector that is to hold the result. May be null.
Type Parameters
- T
- U
- V
Return Value
Vector<V>A vector whose elements are the result of applying function to the corresponding elements of first and second.
Exceptions
Argument | function is null. -or- first is null. -or- second is null. |
Dimension | The length of first does not equal the length of second. |