#include <iostream.h>
#include "Utility/pre-post-conditions.h"
#include "Geometry/coords.h"
Include dependency graph for matrix.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Compounds | |
struct | fixed_row_mjr_subcriptor |
class | matrix |
Functions | |
template<unsigned N, unsigned M> matrix< M, N > | operator+ (const matrix< M, N > &ls, const matrix< M, N > rs) |
template<unsigned N, unsigned M> matrix< M, N > | operator- (const matrix< M, N > &ls, const matrix< M, N > rs) |
template<unsigned N, unsigned M> matrix< M, N > | operator * (const matrix< M, N > &ls, coord_N_component rs) |
template<unsigned N, unsigned M> matrix< M, N > | operator * (coord_N_component ls, const matrix< M, N > &rs) |
template<unsigned K, unsigned L, unsigned M> void | mul (matrix< K, M > &res, const matrix< K, L > &ls, const matrix< L, M > &rs) |
template<unsigned K, unsigned L, unsigned M> matrix< K, M > | operator * (const matrix< K, L > &ls, const matrix< L, M > &rs) |
template<unsigned N, unsigned M> void | mul (coordN< N > &res, const matrix< M, N > &ls, const coordN< N > &rs) |
template<unsigned N, unsigned M> coordN< M > | operator * (const matrix< M, N > &ls, const coordN< N > &rs) |
template<unsigned N, unsigned M> ostream & | operator<< (ostream &out, const matrix< M, N > &rs) |
template<unsigned N, unsigned M> istream & | operator>> (istream &in, matrix< M, N > &rs) |
|
|
|
|
|
Definition at line 60 of file matrix.h. References coord_N_component. |
|
Definition at line 65 of file matrix.h. References coord_N_component. |
|
|
|
Definition at line 84 of file matrix.h. References mul. |
|
Definition at line 93 of file matrix.h. Referenced by operator *. |
|
Definition at line 104 of file matrix.h. References mul. |
|
|
|
|