Click or drag to resize
Accord.NET (logo)

MatrixSetT Method (T, Int32, Int32, Int32, Int32, T)

Returns a sub matrix extracted from the current matrix.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static T[][] Set<T>(
	this T[][] destination,
	int startRow,
	int endRow,
	int startColumn,
	int endColumn,
	T[][] values
)
Request Example View Source

Parameters

destination
Type: T
The matrix where the values should be stored.
startRow
Type: SystemInt32
Start row index in the destination matrix.
endRow
Type: SystemInt32
End row index in the destination matrix.
startColumn
Type: SystemInt32
Start column index in the destination matrix.
endColumn
Type: SystemInt32
End column index in the destination matrix.
values
Type: T
The values to be stored.

Type Parameters

T

Return Value

Type: T

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . 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