OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
Macros | Functions
newmat6.cpp File Reference
#include <ossim/matrix/include.h>
#include <ossim/matrix/newmat.h>
#include <ossim/matrix/newmatrc.h>

Go to the source code of this file.

Macros

#define REPORT   {}
 

Functions

SPMatrix SP (const BaseMatrix &bm1, const BaseMatrix &bm2)
 
KPMatrix KP (const BaseMatrix &bm1, const BaseMatrix &bm2)
 
ShiftedMatrix operator+ (Real f, const BaseMatrix &BM)
 
NegShiftedMatrix operator- (Real f, const BaseMatrix &bm)
 
ScaledMatrix operator* (Real f, const BaseMatrix &BM)
 

Macro Definition Documentation

◆ REPORT

#define REPORT   {}

Definition at line 19 of file newmat6.cpp.

Referenced by BaseMatrix::AsColumn(), BaseMatrix::AsDiagonal(), BaseMatrix::AsMatrix(), BaseMatrix::AsRow(), BaseMatrix::AsScalar(), Matrix::element(), SymmetricMatrix::element(), UpperTriangularMatrix::element(), LowerTriangularMatrix::element(), DiagonalMatrix::element(), RowVector::element(), ColumnVector::element(), BandMatrix::element(), UpperBandMatrix::element(), LowerBandMatrix::element(), SymmetricBandMatrix::element(), BaseMatrix::i(), KP(), Matrix::operator()(), SymmetricMatrix::operator()(), UpperTriangularMatrix::operator()(), LowerTriangularMatrix::operator()(), DiagonalMatrix::operator()(), RowVector::operator()(), ColumnVector::operator()(), BandMatrix::operator()(), UpperBandMatrix::operator()(), LowerBandMatrix::operator()(), SymmetricBandMatrix::operator()(), BaseMatrix::operator*(), operator*(), InvertedMatrix::operator*(), GeneralMatrix::operator*=(), GenericMatrix::operator*=(), BaseMatrix::operator+(), operator+(), GeneralMatrix::operator+=(), GenericMatrix::operator+=(), BaseMatrix::operator-(), operator-(), GeneralMatrix::operator-=(), GenericMatrix::operator-=(), BaseMatrix::operator/(), GeneralMatrix::operator<<(), GeneralMatrix::operator=(), Matrix::operator=(), SquareMatrix::operator=(), SymmetricMatrix::operator=(), UpperTriangularMatrix::operator=(), LowerTriangularMatrix::operator=(), DiagonalMatrix::operator=(), RowVector::operator=(), ColumnVector::operator=(), IdentityMatrix::operator=(), GenericMatrix::operator=(), BaseMatrix::operator|(), GeneralMatrix::operator|=(), GenericMatrix::operator|=(), BaseMatrix::Reverse(), SP(), and BaseMatrix::t().

Function Documentation

◆ KP()

KPMatrix KP ( const BaseMatrix bm1,
const BaseMatrix bm2 
)

Definition at line 277 of file newmat6.cpp.

References REPORT.

278 { REPORT return KPMatrix(&bm1, &bm2); }
#define REPORT
Definition: newmat6.cpp:19

◆ operator*()

ScaledMatrix operator* ( Real  f,
const BaseMatrix BM 
)

Definition at line 310 of file newmat6.cpp.

References REPORT.

311 { REPORT return ScaledMatrix(&BM, f); }
#define REPORT
Definition: newmat6.cpp:19

◆ operator+()

ShiftedMatrix operator+ ( Real  f,
const BaseMatrix BM 
)

Definition at line 298 of file newmat6.cpp.

References REPORT.

299 { REPORT return ShiftedMatrix(&BM, f); }
#define REPORT
Definition: newmat6.cpp:19

◆ operator-()

NegShiftedMatrix operator- ( Real  f,
const BaseMatrix bm 
)

Definition at line 301 of file newmat6.cpp.

References REPORT.

302 { REPORT return NegShiftedMatrix(f, &bm); }
#define REPORT
Definition: newmat6.cpp:19

◆ SP()

SPMatrix SP ( const BaseMatrix bm1,
const BaseMatrix bm2 
)

Definition at line 274 of file newmat6.cpp.

References REPORT.

Referenced by SPMatrix::Evaluate().

275 { REPORT return SPMatrix(&bm1, &bm2); }
#define REPORT
Definition: newmat6.cpp:19