Jagged |
public class JaggedArrayMath
The JaggedArrayMath type exposes the following members.
Name | Description | |
---|---|---|
Add | Calculates a+b and stores the result in matrix c. | |
AddRow | Add the row browToAdd of matrix b to all rows of matrix a. | |
DivideRow | Divides all rows of matrix a by the row rowb of matrix b (element by element). | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
GetHashCode | Serves as the default hash function. (Inherited from Object) | |
GetMatrixArray | Allocates an array of n x m values. | |
GetMatrixCopy | Allocates an array of the same dimensions than the provided matrix a, and copies the element of a to the new array. | |
GetType | Gets the Type of the current instance. (Inherited from Object) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
Multiply | Multiplies matrix a with matrix b and stores the result in matrix c. | |
MultiplyFirstTransposed | Multiplies matrix a_transposed with matrix b and stores the result in matrix c. | |
MultiplyFirstTransposedWithItself | Multiplies matrix a_transposed with matrix a itself and stores the result in matrix c. | |
MultiplyRow | Multiplies the row rowb of matrix b element by element to all rows of matrix a. | |
MultiplyScalar | Multiplies the matrix a with a scalar value b and stores the result in c. Matrix a and c are allowed to be the same matrix. | |
MultiplySecondTransposed | Multiplies matrix a with matrix b_transposed and stores the result in matrix c. | |
Subtract | Calculates a-b and stores the result in matrix c. | |
SubtractColumn | Subtract the column bcolToSubtract of matrix b from all columns of matrix a. | |
SubtractProductFromSelf(Double, Int32, Int32, Double, Double, Int32, Int32) | Calculates c = c - ab | |
SubtractProductFromSelf(Double, Int32, Int32, Double, Int32, Int32, Double, Int32, Int32) | Calculates c = c - ab | |
SubtractRow | Subtract the row browToSubtract of matrix b from all rows of matrix a. | |
ToMatrix | This wraps a jagged double array to the IMatrixT interface. The data is not copied! | |
ToString | Returns a string that represents the current object. (Inherited from Object) | |
ToTransposedMatrix | This wraps a jagged double array to the IROMatrixT interface so that the array appears to be transposed. The data is not copied! | |
ToTransposedROMatrix | This wraps a jagged double array to the IROMatrixT interface so that the array appears to be transposed. The data is not copied! |