Double |
The DoubleComplexMatrix type exposes the following members.
Name | Description | |
---|---|---|
Add(DoubleComplex, DoubleComplexMatrix) | Adds a scalar and a matrix. | |
Add(DoubleComplexMatrix, DoubleComplex) | Adds a matrix and a scalar. | |
Add(DoubleComplexMatrix, DoubleComplexMatrix) | Adds two matrices. | |
Add(DoubleComplex, DoubleComplexMatrix, DoubleComplexMatrix) | Adds a scalar and a matrix. | |
Add(DoubleComplexMatrix, DoubleComplex, DoubleComplexMatrix) | Adds a scalar to a matrix | |
Add(DoubleComplexMatrix, DoubleComplexMatrix, DoubleComplexMatrix) | Adds two matrices. | |
Apply(FuncDoubleComplex, DoubleComplex) | Returns a new matrix with the same size as this matrix, whose values are the result of applying the given unary function to each element of this matrix. | |
Apply(FuncDoubleComplex, Double) | Returns a new matrix with the same size as this matrix, whose values are the result of applying the given unary function to each element of this matrix. | |
Apply(FuncDoubleComplex, DoubleComplex, DoubleComplex, DoubleComplex) | Returns a new matrix with the same size as this matrix, whose values are the result of applying the given binary function to each element of this matrix. The first parameter to the binary function is the matrix element; the second parameter is the passed DoubleComplex value. | |
Apply(FuncDoubleComplex, DoubleComplex, DoubleComplex, DoubleComplexMatrix) | Returns a new matrix with the same size as this matrix, whose values are the result of applying the given binary function to each element of this matrix. The first parameter to the binary function is the matrix element; the second parameter is the corresponding element of the passed matrix. | |
Apply(FuncDoubleComplex, Int32, DoubleComplex, Int32) | Returns a new matrix with the same size as this matrix, whose values are the result of applying the given binary function to each element of this matrix. The first parameter to the binary function is the matrix element; the second parameter is the passed integer value. | |
ApplyColumns | Returns a new vector containing an element for each column in this matrix. The elements are the results of applying a function that takes a vector and returns a single-precision number. | |
Clear | Sets the data elements of this vector to zero. | |
Clear(Int32, Slice) | Sets the values of the submatrix determined by the specified slices to zero. | |
Clear(Slice, Slice) | Sets the values of the submatrix determined by the specified slices to zero. | |
Clear(Slice, Int32) | Sets the values of the submatrix determined by the specified slices to zero. | |
Clone | Creates a deep copy of this matrix. | |
Col | Returns a column of this matrix as a vector. The returned vector and the matrix share the data. | |
ConjTranspose | Returns the conjugate transpose of this matrix. | |
DeepenThisCopy | Guarantees that there is only one reference to the underlying data and that this data is in contiguous storage. | |
Diagonal | Returns a vector view of the main diagonal of this matrix. | |
Diagonal(Int32) | Returns a vector view of a diagonal of this matrix. | |
Divide(DoubleComplex, DoubleComplexMatrix) | Divide a scalar by a matrix. | |
Divide(DoubleComplexMatrix, DoubleComplex) | Divide a matrix by a scalar. | |
Divide(DoubleComplexMatrix, DoubleComplexMatrix) | Divide a matrix by another. | |
Divide(DoubleComplex, DoubleComplexMatrix, DoubleComplexMatrix) | Divide a scalar by a matrix. | |
Divide(DoubleComplexMatrix, DoubleComplex, DoubleComplexMatrix) | Divide a matrix by a scalar. | |
Divide(DoubleComplexMatrix, DoubleComplexMatrix, DoubleComplexMatrix) | Divide a matrix by another. | |
Equals |
Tests for equality of this matrix and another matrix.
Two matrices are equal if they have the same dimensions and all
values are equal.
(Overrides ObjectEquals(Object)) | |
FrobeniusNorm | Computes the Frobenius norm for this matrix. | |
GetDoubleComplexEnumerator | Creates an IDoubleComplexEnumerator out of the data elements in this vector. | |
GetEnumerator | Creates an IEnumerator{DoubleComplex} out of the data elements in this matrix. | |
GetHashCode |
Returns an integer hash code for this matrix.
(Overrides ObjectGetHashCode) | |
GetSchema | The method is reserved and should not be used. | |
Identity | Returns an identity matrix of the specified size. | |
Increment | Adds the specified value to each element in the matrix. | |
InfinityNorm | Computes the infinity-norm of this matrix. | |
Multiply(DoubleComplex, DoubleComplexMatrix) | Multiple a scalar and a matrix. | |
Multiply(DoubleComplexMatrix, DoubleComplex) | Multiply a matrix and a scalar. | |
Multiply(DoubleComplexMatrix, DoubleComplexMatrix) | Multiply two matrices. | |
Multiply(DoubleComplex, DoubleComplexMatrix, DoubleComplexMatrix) | Multiply a scalar and a matrix. | |
Multiply(DoubleComplexMatrix, DoubleComplex, DoubleComplexMatrix) | Multiply a matrix and a scalar. | |
Multiply(DoubleComplexMatrix, DoubleComplexMatrix, DoubleComplexMatrix) | Multiply two matrices. | |
NaNEquals | Tests for equality of this matrix and another matrix. Two matrices are equal if they have the same dimensions and all values are equal. | |
Negate | Negation operator. | |
OneNorm | Computes the 1-norm of this matrix. | |
Parse(String) | Constructs a DoubleComplexMatrix instance from a formatted string. | |
Parse(TextReader) | Constructs a DoubleComplexMatrix instance from the given text reader. | |
Parse(String, NumberStyles) | Constructs a DoubleComplexMatrix instance from a formatted string and a NumberStyles object. | |
Parse(TextReader, NumberStyles) | Returns a new DoubleMatrix instance from the given text reader. | |
ReadXml |
Generates a DoubleComplexMatrix instance form its XML representation.
Example
The matrix:
| (1,0) (2,0) (3,0) |
| (4,0) (5,0) (6,0) |
| (7,0) (8,0) (9,0) |
would be serialized as:
| |
Resize | Changes the dimensions of this matrix to those specified, adding zeros or truncating as necessary. | |
ResizeAndClear | Changes the dimensions of this matrix to those specified. Matrix values are not preserved during this operation and are reset to zero. | |
Row | Returns a row of this matrix as a vector. The returned vector and the matrix share the data. | |
Scale | Scales each element in the matrix by the specified value. | |
Set(DoubleComplex) | Sets the data elements of this vector to the specified value. | |
Set(Int32, Slice, DoubleComplex) | Sets the values in the specified row and columns to the given value. | |
Set(Slice, Slice, DoubleComplex) | Sets the values of the submatrix determined by the specified slices to a given value. | |
Set(Slice, Int32, DoubleComplex) | Sets the values in the specified rows and column to a given value. | |
ShallowCopy | Creates a shallow copy of this matrix. | |
Slice | Returns a vector that views a slice of this matrix. The slice begins at element i,j and extends for n elements. The increment between successive elements in the vector is rowStride rows and colStride columns. | |
Subtract(DoubleComplex, DoubleComplexMatrix) | Subtracts a matrix from a scalar. | |
Subtract(DoubleComplexMatrix, DoubleComplex) | Subtracts a scalar from a matrix. | |
Subtract(DoubleComplexMatrix, DoubleComplexMatrix) | Subtracts one matrix from another. | |
Subtract(DoubleComplex, DoubleComplexMatrix, DoubleComplexMatrix) | Subtracts a matrix from a scalar. | |
Subtract(DoubleComplexMatrix, DoubleComplex, DoubleComplexMatrix) | Subtracts a scalar from a matrix. | |
Subtract(DoubleComplexMatrix, DoubleComplexMatrix, DoubleComplexMatrix) | Subtracts one matrix from another. | |
ToArray | Copies data into an array and returns it. | |
ToImagDataTable | Creates a data table containing the imaginary parts in this matrix. | |
ToImagDataTable(String) | Creates a data table with the specified name containing the imaginary parts in this matrix. | |
ToRealDataTable | Creates a data table containing the real parts in this matrix. | |
ToRealDataTable(String) | Creates a data table with the specified name containing the real parts in this matrix. | |
ToString |
Returns a formatted string representation of this matrix.
(Overrides ObjectToString) | |
ToString(String) | Returns a formatted string representation of this matrix. Numbers are displayed using the specified format. | |
ToTabDelimited | Returns a formatted string representation of this matrix using tabs and newlines. | |
ToTabDelimited(String) | Returns a formatted string representation of this matrix using tabs and newlines. Numbers are formatted using the specified format string. | |
Transform(FuncDoubleComplex) | Modifies the elements of this matrix by applying the given no-argument function to each element. | |
Transform(FuncDoubleComplex, DoubleComplex) | Modifies the elements of this matrix by applying the given unary function to each element. | |
Transform(FuncDoubleComplex, DoubleComplex, DoubleComplex, DoubleComplex) | Modifies the contents of this matrix by applying the given binary function to each element. The first parameter to the binary function is the matrix element; the second parameter is the passed DoubleComplex value. | |
Transform(FuncDoubleComplex, DoubleComplex, DoubleComplex, DoubleComplexMatrix) | Modifies the contents of this matrix by applying the given binary function to each element. The first parameter to the binary function is the matrix element; the second parameter is the corresponding element of the passed matrix. | |
Transform(FuncDoubleComplex, Int32, DoubleComplex, Int32) | Modifies the contents of this matrix by applying the given binary function to each element. The first parameter to the binary function is the matrix element; the second parameter is the passed integer value. | |
Transpose | Returns the transpose of this matrix. | |
Write(TextWriter) | Writes a text representation of this matrix to the writer. | |
Write(TextWriter, String) | Writes a formatted text representation of this matrix to the writer using the specified format. | |
WriteXml |
Converts an object into its XML representation.
Example
The matrix:
| (1,0) (2,0) (3,0) |
| (4,0) (5,0) (6,0) |
| (7,0) (8,0) (9,0) |
would be serialized as:
|