|
MatrixSetValue Method
|
Sets a value to the element at the specified position in the multidimensional
or jagged System.Array. The indexes are specified as an array of 32-bit integers.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static void SetValue(
this Array array,
Object value,
bool deep,
int[] indices
)
<ExtensionAttribute>
Public Shared Sub SetValue (
array As Array,
value As Object,
deep As Boolean,
indices As Integer()
)
Request Example
View SourceParameters
- array
- Type: SystemArray
A jagged or multidimensional array. - value
- Type: SystemObject
The new value for the specified element. - deep
- Type: SystemBoolean
If set to true, internal arrays in jagged arrays will be followed. - indices
- Type: SystemInt32
A one-dimensional array of 32-bit integers that represent
the indexes specifying the position of the element to set.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Array. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also