GNU Octave  9.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
dSparse.cc File Reference
#include <istream>
#include <ostream>
#include "quit.h"
#include "lo-ieee.h"
#include "lo-lapack-proto.h"
#include "lo-mappers.h"
#include "dRowVector.h"
#include "oct-locbuf.h"
#include "dDiagMatrix.h"
#include "CSparse.h"
#include "boolSparse.h"
#include "dSparse.h"
#include "oct-spparms.h"
#include "sparse-lu.h"
#include "MatrixType.h"
#include "oct-sparse.h"
#include "sparse-util.h"
#include "sparse-chol.h"
#include "sparse-qr.h"
#include "Sparse-op-defs.h"
#include "Sparse-diag-op-defs.h"
#include "Sparse-perm-op-defs.h"
#include "sparse-dmsolve.h"

Go to the source code of this file.

Macros

#define COL_EXPR
 
#define EMPTY_RETURN_CHECK(T)
 
#define ROW_EXPR
 

Functions

SparseMatrix imag (const SparseComplexMatrix &a)
 
SparseMatrix max (const SparseMatrix &a, const SparseMatrix &b)
 
SparseMatrix max (const SparseMatrix &m, double d)
 
SparseMatrix max (double d, const SparseMatrix &m)
 
SparseMatrix min (const SparseMatrix &a, const SparseMatrix &b)
 
SparseMatrix min (const SparseMatrix &m, double d)
 
SparseMatrix min (double d, const SparseMatrix &m)
 
Matrix mul_trans (const Matrix &m, const SparseMatrix &a)
 
SparseBoolMatrix mx_el_and (const double &s, const SparseMatrix &m)
 
SparseBoolMatrix mx_el_and (const SparseMatrix &, const SparseMatrix ::element_type &)
 
SparseBoolMatrix mx_el_and (const SparseMatrix &m, const double &s)
 
SparseBoolMatrix mx_el_and (const SparseMatrix &m1, const SparseMatrix &m2)
 
SparseBoolMatrix mx_el_and (const SparseMatrix ::element_type &, const SparseMatrix &)
 
SparseBoolMatrix mx_el_eq (const double &s, const SparseMatrix &m)
 
SparseBoolMatrix mx_el_eq (const SparseMatrix &m, const double &s)
 
SparseBoolMatrix mx_el_eq (const SparseMatrix &m1, const SparseMatrix &m2)
 
SparseBoolMatrix mx_el_ge (const double &s, const SparseMatrix &m)
 
SparseBoolMatrix mx_el_ge (const SparseMatrix &m, const double &s)
 
SparseBoolMatrix mx_el_ge (const SparseMatrix &m1, const SparseMatrix &m2)
 
SparseBoolMatrix mx_el_gt (const double &s, const SparseMatrix &m)
 
SparseBoolMatrix mx_el_gt (const SparseMatrix &m, const double &s)
 
SparseBoolMatrix mx_el_gt (const SparseMatrix &m1, const SparseMatrix &m2)
 
SparseBoolMatrix mx_el_le (const double &s, const SparseMatrix &m)
 
SparseBoolMatrix mx_el_le (const SparseMatrix &m, const double &s)
 
SparseBoolMatrix mx_el_le (const SparseMatrix &m1, const SparseMatrix &m2)
 
SparseBoolMatrix mx_el_lt (const double &s, const SparseMatrix &m)
 
SparseBoolMatrix mx_el_lt (const SparseMatrix &m, const double &s)
 
SparseBoolMatrix mx_el_lt (const SparseMatrix &m1, const SparseMatrix &m2)
 
SparseBoolMatrix mx_el_ne (const double &s, const SparseMatrix &m)
 
SparseBoolMatrix mx_el_ne (const SparseMatrix &m, const double &s)
 
SparseBoolMatrix mx_el_ne (const SparseMatrix &m1, const SparseMatrix &m2)
 
SparseBoolMatrix mx_el_or (const double &s, const SparseMatrix &m)
 
SparseBoolMatrix mx_el_or (const SparseMatrix &, const SparseMatrix ::element_type &)
 
SparseBoolMatrix mx_el_or (const SparseMatrix &m, const double &s)
 
SparseBoolMatrix mx_el_or (const SparseMatrix &m1, const SparseMatrix &m2)
 
SparseBoolMatrix mx_el_or (const SparseMatrix ::element_type &, const SparseMatrix &)
 
SparseMatrix operator* (const DiagMatrix &d, const SparseMatrix &a)
 
Matrix operator* (const Matrix &m, const SparseMatrix &a)
 
SparseMatrix operator* (const PermMatrix &p, const SparseMatrix &a)
 
SparseMatrix operator* (const SparseMatrix &a, const DiagMatrix &d)
 
SparseMatrix operator* (const SparseMatrix &a, const PermMatrix &p)
 
Matrix operator* (const SparseMatrix &m, const Matrix &a)
 
SparseMatrix operator* (const SparseMatrix &m, const SparseMatrix &a)
 
SparseMatrix operator+ (const DiagMatrix &d, const SparseMatrix &a)
 
SparseMatrix operator+ (const SparseMatrix &a, const DiagMatrix &d)
 
SparseMatrix operator- (const DiagMatrix &d, const SparseMatrix &a)
 
SparseMatrix operator- (const SparseMatrix &a, const DiagMatrix &d)
 
std::ostream & operator<< (std::ostream &os, const SparseMatrix &a)
 
std::istream & operator>> (std::istream &is, SparseMatrix &a)
 
SparseMatrix real (const SparseComplexMatrix &a)
 
Matrix trans_mul (const SparseMatrix &m, const Matrix &a)
 

Macro Definition Documentation

◆ COL_EXPR

#define COL_EXPR
Value:
double d = data (i); \
tmp[j] += d * d
F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE * d

◆ EMPTY_RETURN_CHECK

#define EMPTY_RETURN_CHECK (   T)
Value:
if (nr == 0 || nc == 0) \
return T (nr, nc);

Definition at line 7594 of file dSparse.cc.

◆ ROW_EXPR

#define ROW_EXPR
Value:
double d = data (i); \
tmp[ridx (i)] += d * d

Function Documentation

◆ imag()

SparseMatrix imag ( const SparseComplexMatrix a)

Definition at line 575 of file dSparse.cc.

◆ max() [1/3]

◆ max() [2/3]

SparseMatrix max ( const SparseMatrix m,
double  d 
)

Definition at line 7806 of file dSparse.cc.

References d, m, and max().

◆ max() [3/3]

SparseMatrix max ( double  d,
const SparseMatrix m 
)

◆ min() [1/3]

◆ min() [2/3]

SparseMatrix min ( const SparseMatrix m,
double  d 
)

Definition at line 7656 of file dSparse.cc.

References d, m, and min().

◆ min() [3/3]

SparseMatrix min ( double  d,
const SparseMatrix m 
)

◆ mul_trans()

Matrix mul_trans ( const Matrix m,
const SparseMatrix a 
)

Definition at line 7523 of file dSparse.cc.

References FULL_SPARSE_MUL_TRANS.

◆ mx_el_and() [1/5]

SparseBoolMatrix mx_el_and ( const double &  s,
const SparseMatrix m 
)

Definition at line 7902 of file dSparse.cc.

◆ mx_el_and() [2/5]

SparseBoolMatrix mx_el_and ( const SparseMatrix ,
const SparseMatrix ::element_type &   
)

◆ mx_el_and() [3/5]

SparseBoolMatrix mx_el_and ( const SparseMatrix m,
const double &  s 
)

Definition at line 7899 of file dSparse.cc.

◆ mx_el_and() [4/5]

SparseBoolMatrix mx_el_and ( const SparseMatrix m1,
const SparseMatrix m2 
)

Definition at line 7905 of file dSparse.cc.

◆ mx_el_and() [5/5]

SparseBoolMatrix mx_el_and ( const SparseMatrix ::element_type &  ,
const SparseMatrix  
)

◆ mx_el_eq() [1/3]

SparseBoolMatrix mx_el_eq ( const double &  s,
const SparseMatrix m 
)

Definition at line 7901 of file dSparse.cc.

◆ mx_el_eq() [2/3]

SparseBoolMatrix mx_el_eq ( const SparseMatrix m,
const double &  s 
)

Definition at line 7898 of file dSparse.cc.

◆ mx_el_eq() [3/3]

SparseBoolMatrix mx_el_eq ( const SparseMatrix m1,
const SparseMatrix m2 
)

Definition at line 7904 of file dSparse.cc.

◆ mx_el_ge() [1/3]

SparseBoolMatrix mx_el_ge ( const double &  s,
const SparseMatrix m 
)

Definition at line 7901 of file dSparse.cc.

◆ mx_el_ge() [2/3]

SparseBoolMatrix mx_el_ge ( const SparseMatrix m,
const double &  s 
)

Definition at line 7898 of file dSparse.cc.

◆ mx_el_ge() [3/3]

SparseBoolMatrix mx_el_ge ( const SparseMatrix m1,
const SparseMatrix m2 
)

Definition at line 7904 of file dSparse.cc.

◆ mx_el_gt() [1/3]

SparseBoolMatrix mx_el_gt ( const double &  s,
const SparseMatrix m 
)

Definition at line 7901 of file dSparse.cc.

◆ mx_el_gt() [2/3]

SparseBoolMatrix mx_el_gt ( const SparseMatrix m,
const double &  s 
)

Definition at line 7898 of file dSparse.cc.

◆ mx_el_gt() [3/3]

SparseBoolMatrix mx_el_gt ( const SparseMatrix m1,
const SparseMatrix m2 
)

Definition at line 7904 of file dSparse.cc.

◆ mx_el_le() [1/3]

SparseBoolMatrix mx_el_le ( const double &  s,
const SparseMatrix m 
)

Definition at line 7901 of file dSparse.cc.

◆ mx_el_le() [2/3]

SparseBoolMatrix mx_el_le ( const SparseMatrix m,
const double &  s 
)

Definition at line 7898 of file dSparse.cc.

◆ mx_el_le() [3/3]

SparseBoolMatrix mx_el_le ( const SparseMatrix m1,
const SparseMatrix m2 
)

Definition at line 7904 of file dSparse.cc.

◆ mx_el_lt() [1/3]

SparseBoolMatrix mx_el_lt ( const double &  s,
const SparseMatrix m 
)

Definition at line 7901 of file dSparse.cc.

◆ mx_el_lt() [2/3]

SparseBoolMatrix mx_el_lt ( const SparseMatrix m,
const double &  s 
)

Definition at line 7898 of file dSparse.cc.

◆ mx_el_lt() [3/3]

SparseBoolMatrix mx_el_lt ( const SparseMatrix m1,
const SparseMatrix m2 
)

Definition at line 7904 of file dSparse.cc.

◆ mx_el_ne() [1/3]

SparseBoolMatrix mx_el_ne ( const double &  s,
const SparseMatrix m 
)

Definition at line 7901 of file dSparse.cc.

◆ mx_el_ne() [2/3]

SparseBoolMatrix mx_el_ne ( const SparseMatrix m,
const double &  s 
)

Definition at line 7898 of file dSparse.cc.

◆ mx_el_ne() [3/3]

SparseBoolMatrix mx_el_ne ( const SparseMatrix m1,
const SparseMatrix m2 
)

Definition at line 7904 of file dSparse.cc.

◆ mx_el_or() [1/5]

SparseBoolMatrix mx_el_or ( const double &  s,
const SparseMatrix m 
)

Definition at line 7902 of file dSparse.cc.

◆ mx_el_or() [2/5]

SparseBoolMatrix mx_el_or ( const SparseMatrix ,
const SparseMatrix ::element_type &   
)

◆ mx_el_or() [3/5]

SparseBoolMatrix mx_el_or ( const SparseMatrix m,
const double &  s 
)

Definition at line 7899 of file dSparse.cc.

◆ mx_el_or() [4/5]

SparseBoolMatrix mx_el_or ( const SparseMatrix m1,
const SparseMatrix m2 
)

Definition at line 7905 of file dSparse.cc.

◆ mx_el_or() [5/5]

SparseBoolMatrix mx_el_or ( const SparseMatrix ::element_type &  ,
const SparseMatrix  
)

◆ operator*() [1/7]

SparseMatrix operator* ( const DiagMatrix d,
const SparseMatrix a 
)

Definition at line 7543 of file dSparse.cc.

References d.

◆ operator*() [2/7]

Matrix operator* ( const Matrix m,
const SparseMatrix a 
)

Definition at line 7517 of file dSparse.cc.

References FULL_SPARSE_MUL.

◆ operator*() [3/7]

SparseMatrix operator* ( const PermMatrix p,
const SparseMatrix a 
)

Definition at line 7581 of file dSparse.cc.

References octinternal_do_mul_pm_sm().

◆ operator*() [4/7]

SparseMatrix operator* ( const SparseMatrix a,
const DiagMatrix d 
)

Definition at line 7549 of file dSparse.cc.

References d.

◆ operator*() [5/7]

SparseMatrix operator* ( const SparseMatrix a,
const PermMatrix p 
)

Definition at line 7587 of file dSparse.cc.

References octinternal_do_mul_sm_pm().

◆ operator*() [6/7]

Matrix operator* ( const SparseMatrix m,
const Matrix a 
)

Definition at line 7529 of file dSparse.cc.

References SPARSE_FULL_MUL.

◆ operator*() [7/7]

SparseMatrix operator* ( const SparseMatrix m,
const SparseMatrix a 
)

Definition at line 7511 of file dSparse.cc.

References SPARSE_SPARSE_MUL.

◆ operator+() [1/2]

SparseMatrix operator+ ( const DiagMatrix d,
const SparseMatrix a 
)

Definition at line 7555 of file dSparse.cc.

References d.

◆ operator+() [2/2]

SparseMatrix operator+ ( const SparseMatrix a,
const DiagMatrix d 
)

Definition at line 7567 of file dSparse.cc.

References d.

◆ operator-() [1/2]

SparseMatrix operator- ( const DiagMatrix d,
const SparseMatrix a 
)

Definition at line 7561 of file dSparse.cc.

References d.

◆ operator-() [2/2]

SparseMatrix operator- ( const SparseMatrix a,
const DiagMatrix d 
)

Definition at line 7573 of file dSparse.cc.

References d.

◆ operator<<()

std::ostream& operator<< ( std::ostream &  os,
const SparseMatrix a 
)

Definition at line 7455 of file dSparse.cc.

◆ operator>>()

std::istream& operator>> ( std::istream &  is,
SparseMatrix a 
)

Definition at line 7477 of file dSparse.cc.

◆ real()

SparseMatrix real ( const SparseComplexMatrix a)

Definition at line 554 of file dSparse.cc.

◆ trans_mul()

Matrix trans_mul ( const SparseMatrix m,
const Matrix a 
)

Definition at line 7535 of file dSparse.cc.

References SPARSE_FULL_TRANS_MUL.