Matrix3x2.Subtraction(Matrix3x2, Matrix3x2) 연산자

정의

두 번째 행렬의 각 요소를 첫 번째 행렬의 해당 요소에서 뺍니다.

public:
 static System::Numerics::Matrix3x2 operator -(System::Numerics::Matrix3x2 value1, System::Numerics::Matrix3x2 value2);
public static System.Numerics.Matrix3x2 operator - (System.Numerics.Matrix3x2 value1, System.Numerics.Matrix3x2 value2);
static member ( - ) : System.Numerics.Matrix3x2 * System.Numerics.Matrix3x2 -> System.Numerics.Matrix3x2
Public Shared Operator - (value1 As Matrix3x2, value2 As Matrix3x2) As Matrix3x2

매개 변수

value1
Matrix3x2

첫 번째 행렬입니다.

value2
Matrix3x2

두 번째 행렬입니다.

반환

value2의 각 요소를 value1의 해당 요소에서 뺀 결과로 생성되는 값을 포함하는 행렬입니다.

설명

메서드는 Subtract 개체에 대한 빼기 연산자의 연산을 Matrix3x2 정의합니다.

적용 대상