Matrix3x2.Multiply 方法

定义

对矩阵执行乘法运算。

重载

Multiply(Matrix3x2, Matrix3x2)

返回将两个矩阵相乘得到的矩阵。

Multiply(Matrix3x2, Single)

返回按标量系数缩放指定矩阵的所有元素后得到的矩阵。

Multiply(Matrix3x2, Matrix3x2)

Source:
Matrix3x2.cs
Source:
Matrix3x2.cs
Source:
Matrix3x2.cs

返回将两个矩阵相乘得到的矩阵。

public static System.Numerics.Matrix3x2 Multiply (System.Numerics.Matrix3x2 value1, System.Numerics.Matrix3x2 value2);

参数

value1
Matrix3x2

第一个矩阵。

value2
Matrix3x2

第二个矩阵。

返回

乘积矩阵。

适用于

.NET 9 和其他版本
产品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided), 2.1
UWP 10.0

Multiply(Matrix3x2, Single)

Source:
Matrix3x2.cs
Source:
Matrix3x2.cs
Source:
Matrix3x2.cs

返回按标量系数缩放指定矩阵的所有元素后得到的矩阵。

public static System.Numerics.Matrix3x2 Multiply (System.Numerics.Matrix3x2 value1, float value2);

参数

value1
Matrix3x2

要缩放的矩阵。

value2
Single

要使用的缩放值。

返回

缩放后的矩阵。

适用于

.NET 9 和其他版本
产品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided), 2.1
UWP 10.0