#include "SMatrix.h"
Include dependency graph for SMatrix.cpp:
Go to the source code of this file.
Defines | |
#define | min(a, b) ( a<b ? a : b ) |
#define | max(a, b) ( a>b ? a : b ) |
#define | checkNRows(M) (m_NRows==M.m_NRows) |
#define | checkNCols(M) (m_NCols==M.m_NCols) |
#define | checkDims(M) (checkNRows(M) && checkNCols(M)) |
Functions | |
SMatrix | operator * (const double s, const SMatrix &m) |
Multiplies a scalar by a matrix. | |
ostream & | operator<< (ostream &ofp, const SMatrix &A) |
istream & | operator>> (istream &ifp, SMatrix &A) |
|
Definition at line 28 of file SMatrix.cpp. Referenced by SMatrix::operator *=(), SMatrix::operator+(), SMatrix::operator+=(), SMatrix::operator-(), and SMatrix::operator-=(). |
|
Definition at line 27 of file SMatrix.cpp. Referenced by SMatrix::vertCat(). |
|
Definition at line 26 of file SMatrix.cpp. Referenced by SMatrix::horizCat(). |
|
Definition at line 12 of file SMatrix.cpp. |
|
Definition at line 9 of file SMatrix.cpp. |
|
Multiplies a scalar by a matrix.
Definition at line 442 of file SMatrix.cpp. |
|
Definition at line 512 of file SMatrix.cpp. References dword, SMatrix::m_Data, SMatrix::m_NCols, and SMatrix::m_NRows. |
|
Definition at line 525 of file SMatrix.cpp. References dword, SMatrix::m_Data, SMatrix::m_NCols, and SMatrix::m_NRows. |