IGLib 1.4
The IGLib base library for development of numerical, technical and business applications.
|
2D matrix, struct implementation. More...
Public Member Functions | |
mat2 (mat2 m) | |
Copy constructor. Initializes components of a 2D matrix with components of the specified matrix. | |
mat2 (double xx, double xy, double yx, double yy) | |
Initializes 2D matrix structure with the specified components. | |
mat2 (double component) | |
Initializes 2D with the specified component. | |
mat2 (vec2 xrow, vec2 yrow) | |
Initializes 2D matrix structure with the specified rows. | |
void | Zero () |
Sets components of the vector to 0.0. | |
void | Set (double comp) |
Sets components of the vector to the specified value. | |
override int | GetHashCode () |
Returns the hash code (hash function) of the current matrix. | |
override bool | Equals (Object obj) |
Returns a value indicating whether the specified object is equal to the current matrix. True is returned if the object is of type mat2) and has equal elements as the current matrix. | |
mat2 | NormalizedEuclidean () |
Returns this matrix normalized with Euclidean norm. | |
mat2 | NormalizedForbenius () |
Returns this matrix normalized with Euclidean norm. | |
mat2 | Normalized1 () |
Returns this matrix normalized with 1 norm. | |
mat2 | NormalizedInfinity () |
Returns this matrix normalized with infinity norm. | |
vec2 | Solve (vec2 b) |
Returns solution of system of equations with the current system matrix and the specified right-hand sides. | |
mat2 | Add (mat2 a) |
Returns sum of the current matrix and the specified matrix. | |
mat2 | Subtract (mat2 a) |
Returns difference between the current matrix and the specified matrix. | |
mat2 | MultiplyRight (mat2 b) |
Right-multiplies the current 2D matrix with the specified matrix and returns the product. | |
mat2 | MultiplyLeft (mat2 b) |
Left-multiplies the current 2D matrix with the specified matrix and returns the product. | |
vec2 | Multiply (vec2 b) |
Right-multiplies the current 2D matrix with the specified 2D vector and returns the product. | |
mat2 | Multiply (double b) |
Multiplies the current 2D matrix with the specified scalar and returns the product. | |
override string | ToString () |
Returns a string representation of this 2D matrix. | |
void | Read () |
Reads this 2D matrix components from a console. | |
void | Read (string name) |
Reads this 2D matrix components from a console. | |
Static Public Member Functions | |
static mat2 | Copy (mat2 m) |
Returns a copy of the specified 2D matrix. | |
static void | Negate (mat2 m, ref mat2 res) |
Negates the specified 2D matrix and stores its copy in the resulting matrix. | |
static int | EigenSystem2d (mat2 a, ref mat2 eigenvec, ref vec2 eigenval) |
Calculates eigenvectors and eigenvalues of a 2x2 matrix a and stores eigenvectors to lines of eigenvec and eigenvalues to eigenval. eigenvec can be the same matrix as a. The number of different real eigenvalues is returned. Ref.: linalg.nb Not tested yet! | |
static mat2 | operator+ (mat2 m) |
Unary plus for 2D matrices, returns the operand. | |
static mat2 | operator- (mat2 a) |
Unary negation for 2D matrices, returns the negative operand. | |
static mat2 | operator+ (mat2 a, mat2 b) |
Matrix addition in 2D. | |
static mat2 | operator- (mat2 a, mat2 b) |
Matrix subtraction in 2D. | |
static mat2 | operator* (mat2 a, mat2 b) |
Matrix multiplication in 2D. | |
static vec2 | operator* (mat2 a, vec2 b) |
Matrix with vector multiplication in 2D. | |
static mat2 | operator* (mat2 a, double b) |
Product of a 2D matrix by a scalar. | |
static mat2 | operator* (double a, mat2 b) |
Product of a 2D matrix by a scalar. | |
static mat2 | operator/ (mat2 a, double b) |
Division of a 2D matrix by a scalar. | |
static bool | operator== (mat2 a, mat2 b) |
Vector comparison. | |
static bool | operator!= (mat2 a, mat2 b) |
Vector comparison, returns true if vectors are different. | |
static void | Example () |
A short example of how to use mat2 and vec2 structs. | |
Public Attributes | |
double | xx |
double | xy |
double | yx |
double | yy |
Properties | |
double | this [int i, int j] [get, set] |
Index operator. | |
vec2 | rowx [get, set] |
Gets or sets the x-row of the 2D matrix. | |
vec2 | rowy [get, set] |
Gets or sets the y-row of the 2D matrix. | |
vec2 | columnx [get, set] |
Gets or sets the x-column of the 2D matrix. | |
vec2 | columny [get, set] |
Gets or sets the y-column of the 2D matrix. | |
double | NormForbenius [get] |
Get Forbenius (or euclidean) norm of the matrix - square root of sum of squares of components. | |
double | NormEuclidean [get] |
Get Forbenius (or euclidean) norm of the matrix - square root of sum of squares of components. | |
double | Norm [get] |
Get Forbenius (or euclidean) norm of the matrix - square root of sum of squares of components. | |
double | Norm1 [get] |
Get the 1 norm of the matrix - maximum over columns of sum of absolute values of components. | |
double | NormInfinity [get] |
Get the infinity norm of the matrix - maximum over rows of sum of absolute values of components. | |
double | Determinant [get] |
Gets matrix determinant. | |
double | Det [get] |
Gets matrix determinant. | |
double | Trace [get] |
Gets matrix trace (sum of diagonal elements). | |
mat2 | Transpose [get] |
Gets transpose of the current matrix. | |
mat2 | T [get] |
Gets transpose of the current matrix. | |
mat2 | Inverse [get] |
Gets inverse of the current matrix. | |
mat2 | Inv [get] |
Gets inverse of the current matrix. |
2D matrix, struct implementation.
Name of this struct is not in line with conventions. This is intentional in order to prevent mistaking struct implementation for class interpretation. $A Igor Jul08, Oct10;
IG::Num::mat2::mat2 | ( | mat2 | m | ) | [inline] |
Copy constructor. Initializes components of a 2D matrix with components of the specified matrix.
m | Matrix whose components are copied to the initialized matrix. |
IG::Num::mat2::mat2 | ( | double | xx, |
double | xy, | ||
double | yx, | ||
double | yy | ||
) | [inline] |
Initializes 2D matrix structure with the specified components.
IG::Num::mat2::mat2 | ( | double | component | ) | [inline] |
Initializes 2D with the specified component.
component | Value that is assigned to all matrix components. |
Initializes 2D matrix structure with the specified rows.
void IG::Num::mat2::Zero | ( | ) | [inline] |
Sets components of the vector to 0.0.
void IG::Num::mat2::Set | ( | double | comp | ) | [inline] |
Sets components of the vector to the specified value.
override int IG::Num::mat2::GetHashCode | ( | ) | [inline] |
Returns the hash code (hash function) of the current matrix.
This method should be consistent with the MatrixBase.GetHashCode method, which is standard for implementations of the IMatrix interface.
Two matrices that have the same equal all elements will produce the same hash codes.
Probability that two different matrixes will produce the same hash code is small but it exists.
Overrides the object.GetHashCode method.
override bool IG::Num::mat2::Equals | ( | Object | obj | ) | [inline] |
Returns a value indicating whether the specified object is equal to the current matrix. True is returned if the object is of type mat2) and has equal elements as the current matrix.
Overrides the object.Equals method.
mat2 IG::Num::mat2::NormalizedEuclidean | ( | ) | [inline] |
Returns this matrix normalized with Euclidean norm.
mat2 IG::Num::mat2::NormalizedForbenius | ( | ) | [inline] |
Returns this matrix normalized with Euclidean norm.
mat2 IG::Num::mat2::Normalized1 | ( | ) | [inline] |
Returns this matrix normalized with 1 norm.
mat2 IG::Num::mat2::NormalizedInfinity | ( | ) | [inline] |
Returns this matrix normalized with infinity norm.
Returns solution of system of equations with the current system matrix and the specified right-hand sides.
b | Vector of right-hand sides of equations. |
Returns sum of the current matrix and the specified matrix.
Returns difference between the current matrix and the specified matrix.
Right-multiplies the current 2D matrix with the specified matrix and returns the product.
b | Right-hand side factor of multiplication. |
Left-multiplies the current 2D matrix with the specified matrix and returns the product.
b | Left-hand side factor of multiplication. |
Right-multiplies the current 2D matrix with the specified 2D vector and returns the product.
b | Right-hand side factor of multiplication. |
mat2 IG::Num::mat2::Multiply | ( | double | b | ) | [inline] |
Multiplies the current 2D matrix with the specified scalar and returns the product.
b | Factor of multiplication. |
Returns a copy of the specified 2D matrix.
m | Matrix whose copy is returned. |
static int IG::Num::mat2::EigenSystem2d | ( | mat2 | a, |
ref mat2 | eigenvec, | ||
ref vec2 | eigenval | ||
) | [inline, static] |
Calculates eigenvectors and eigenvalues of a 2x2 matrix a and stores eigenvectors to lines of eigenvec and eigenvalues to eigenval. eigenvec can be the same matrix as a. The number of different real eigenvalues is returned. Ref.: linalg.nb Not tested yet!
a | 2D Matrix whose eigenvalues and eigenvectors are calculated. |
eigenvec | Matrix where eigenvectors are stored as rows. |
eigenval | Vector where eigenvalues are stored. |
$A Igor Aug08, Oct10;
Unary plus for 2D matrices, returns the operand.
Unary negation for 2D matrices, returns the negative operand.
Matrix multiplication in 2D.
Matrix with vector multiplication in 2D.
Product of a 2D matrix by a scalar.
Product of a 2D matrix by a scalar.
Division of a 2D matrix by a scalar.
Vector comparison, returns true if vectors are different.
override string IG::Num::mat2::ToString | ( | ) | [inline] |
Returns a string representation of this 2D matrix.
void IG::Num::mat2::Read | ( | ) | [inline] |
Reads this 2D matrix components from a console.
void IG::Num::mat2::Read | ( | string | name | ) | [inline] |
Reads this 2D matrix components from a console.
name | Name of the matrix to be read; it is written as orientation to the user and can be null. |
static void IG::Num::mat2::Example | ( | ) | [inline, static] |
double IG::Num::mat2::xx |
double IG::Num::mat2::xy |
double IG::Num::mat2::yx |
double IG::Num::mat2::yy |
double IG::Num::mat2::this[int i, int j] [get, set] |
Index operator.
i | Component index. |
vec2 IG::Num::mat2::rowx [get, set] |
Gets or sets the x-row of the 2D matrix.
vec2 IG::Num::mat2::rowy [get, set] |
Gets or sets the y-row of the 2D matrix.
vec2 IG::Num::mat2::columnx [get, set] |
Gets or sets the x-column of the 2D matrix.
vec2 IG::Num::mat2::columny [get, set] |
Gets or sets the y-column of the 2D matrix.
double IG::Num::mat2::NormForbenius [get] |
Get Forbenius (or euclidean) norm of the matrix - square root of sum of squares of components.
double IG::Num::mat2::NormEuclidean [get] |
Get Forbenius (or euclidean) norm of the matrix - square root of sum of squares of components.
double IG::Num::mat2::Norm [get] |
Get Forbenius (or euclidean) norm of the matrix - square root of sum of squares of components.
double IG::Num::mat2::Norm1 [get] |
Get the 1 norm of the matrix - maximum over columns of sum of absolute values of components.
double IG::Num::mat2::NormInfinity [get] |
Get the infinity norm of the matrix - maximum over rows of sum of absolute values of components.
double IG::Num::mat2::Determinant [get] |
Gets matrix determinant.
double IG::Num::mat2::Det [get] |
Gets matrix determinant.
double IG::Num::mat2::Trace [get] |
Gets matrix trace (sum of diagonal elements).
mat2 IG::Num::mat2::Transpose [get] |
Gets transpose of the current matrix.
mat2 IG::Num::mat2::T [get] |
Gets transpose of the current matrix.
mat2 IG::Num::mat2::Inverse [get] |
Gets inverse of the current matrix.
mat2 IG::Num::mat2::Inv [get] |
Gets inverse of the current matrix.