.NET Matrix Library
Real Method
See Also  Send Feedback



Returns a Vector object containing the real parts of the CVector elements.

Syntax

Visual Basic (Declaration) 
Public Function Real() As Vector
Visual Basic (Usage)Copy Code
Dim instance As CVector
Dim value As Vector
 
value = instance.Real()
C# 
public Vector Real()
C++/CLI 
public:
Vector^ Real(); 

Return Value

A Vector object that contains just the real parts of the CVector object's elements.

Remarks

Use this method together with the Imag method in order to split a complex matrix to its real and imaginary parts.

Requirements

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

See Also

.NET Matrix Library