Swaps the columns with the specified indices.
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 4.2.11333.0 (4.2.12253.0)
Syntax
| C# |
public virtual Matrix SwapColumns(
int column1,
int column2
)
|
| Visual Basic (Declaration) |
Public Overridable Function SwapColumns ( _
column1 As Integer, _
column2 As Integer _
) As Matrix
|
| Visual C++ |
public:
virtual Matrix^ SwapColumns(
int column1,
int column2
)
|
| F# |
abstract SwapColumns :
column1:int *
column2:int -> Matrix
override SwapColumns :
column1:int *
column2:int -> Matrix
|
Return Value
A reference to this instance.
Exceptions
| Exception |
Condition |
|
System..::..ArgumentOutOfRangeException
|
column1 is less than zero, or greather than or equal to the number of columns in the matrix.
-or-
column2 is less than zero, or greather than or equal to the number of columns in the matrix.
|
See Also