Searched refs:matname (Results 1 - 5 of 5) sorted by relevance

/external/opencv/cxcore/src/
H A Dcximage.cpp258 bool CvMatrix::load( const char* filename, const char* matname, int color ) argument
268 m = icvRetrieveMatrix(cvLoad(filename,0,matname));
300 bool CvMatrix::read( CvFileStorage* fs, const char* mapname, const char* matname )
309 obj = cvReadByName( fs, mapnode, matname );
312 obj = cvReadByName( fs, 0, matname );
335 void CvMatrix::save( const char* filename, const char* matname )
343 cvSave( filename, matrix, matname );
358 void CvMatrix::write( CvFileStorage* fs, const char* matname )
361 cvWrite( fs, matname, matrix );
/external/opencv/cxcore/include/
H A Dcxcore.hpp236 CvMatrix( const char* filename, const char* matname=0, int color=-1 ) : matrix(0) argument
237 { load( filename, matname, color ); }
239 CvMatrix( CvFileStorage* fs, const char* mapname, const char* matname ) : matrix(0)
240 { read( fs, mapname, matname ); }
302 bool load( const char* filename, const char* matname=0, int color=-1 );
303 bool read( CvFileStorage* fs, const char* mapname, const char* matname );
305 void save( const char* filename, const char* matname );
306 void write( CvFileStorage* fs, const char* matname );
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DMatrixMarketIterator.h26 * It is assumed that the matrices are named as matname.mtx
149 inline std::string& matname() { return m_matname; } function in class:Eigen::MatrixMarketIterator
/external/eigen/test/
H A Dsparse_solver.h214 std::cout<< " ==== SOLVING WITH MATRIX " << it.matname() << " ==== \n";
288 std::cout<< " ==== SOLVING WITH MATRIX " << it.matname() << " ==== \n";
/external/eigen/bench/spbench/
H A Dspbenchsolver.h504 cout<< " ====== SOLVING WITH MATRIX " << it.matname() << " ====\n";
515 statbuf << "<TR><TH rowspan=\"4\">" << it.matname() << " <TD rowspan=\"4\"> "

Completed in 153 milliseconds