Matrix.Create From Function<T> Method
Constructs a new matrix with the specified
number of rows and columns whose elements are all equal to the specified value.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.4
C#
A DenseMatrix<T>.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.4
public static DenseMatrix<T> CreateFromFunction<T>(
int rowCount,
int columnCount,
Func<int, int, T> initializer,
ArrayMutability mutability = ArrayMutability.MutableValues,
bool checkMissingValues = false
)
Parameters
- rowCount Int32
- The number of rows in the new matrix.
- columnCount Int32
- The number of columns in the new matrix.
- initializer Func<Int32, Int32, T>
- A delegate that takes a row, column pair and returns the value of the corresponding element.
- mutability ArrayMutability (Optional)
- Specifies how the matrix's values may be changed. The default is mutable values.
- checkMissingValues Boolean (Optional)
- Optional. Specifies whether operations involving the matrix should check for the presence of missing values. The default is false.
Type Parameters
- T
Return Value
DenseMatrix<T>A DenseMatrix<T>.
Exceptions
Argument | rowCount is less than zero. -or- columnCount is less than zero. |
Argument | initializer is null. |