.NET Matrix Library
Negate Method
See Also  Send Feedback



matrix
The matrix to negate.
Returns the negation of the matrix.

Syntax

Visual Basic (Declaration) 
Public Shared Function Negate( _
   ByVal matrix As Matrix _
) As Matrix
Visual Basic (Usage)Copy Code
Dim matrix As Matrix
Dim value As Matrix
 
value = Matrix.Negate(matrix)
C# 
public static Matrix Negate( 
   Matrix matrix
)
C++/CLI 
public:
static Matrix^ Negate( 
   Matrix^ matrix
) 

Parameters

matrix
The matrix to negate.

Return Value

A Matrix object that represents the negate of the matrix.

Remarks

This method is an alias for the unary negation operator.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library