Click or drag to resize
Accord.NET (logo)

Matrix3x3CreateFromRows Method

Creates a matrix from 3 rows specified as vectors.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static Matrix3x3 CreateFromRows(
	Vector3 row0,
	Vector3 row1,
	Vector3 row2
)
Request Example View Source

Parameters

row0
Type: Accord.MathVector3
First row of the matrix to create.
row1
Type: Accord.MathVector3
Second row of the matrix to create.
row2
Type: Accord.MathVector3
Third row of the matrix to create.

Return Value

Type: Matrix3x3
Returns a matrix from specified rows.
See Also