.NET Matrix Library
Unary Negation Operator
See Also  Send Feedback


A
A Matrix object representing the matrix to negate.
Negates the matrix.

Syntax

Visual Basic (Declaration) 
Public Operator -( _
   ByVal A As Matrix _
) As Matrix
C# 
public Matrix operator -( 
   Matrix A
)
C++/CLI 
public:
Matrix^ operator -( 
   Matrix^ A
)

Parameters

A
A Matrix object representing the matrix to negate.

Return Value

A Matrix object representing the negation of the matrix.

Remarks

The Negate method performs the same function as the unary negation operator and can be used in languages that do not support overloaded operators as Visual Basic.

Requirements

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

See Also

.NET Matrix Library