Click or drag to resize
Accord.NET (logo)

Matrix3x3CreateFromColumns Method

Creates a matrix from 3 columns specified as vectors.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static Matrix3x3 CreateFromColumns(
	Vector3 column0,
	Vector3 column1,
	Vector3 column2
)
Request Example View Source

Parameters

column0
Type: Accord.MathVector3
First column of the matrix to create.
column1
Type: Accord.MathVector3
Second column of the matrix to create.
column2
Type: Accord.MathVector3
Third column of the matrix to create.

Return Value

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