Home
last modified time | relevance | path

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

/external/opencv/cxcore/src/
Dcximage.cpp258 bool CvMatrix::load( const char* filename, const char* matname, int color ) in load() argument
268 m = icvRetrieveMatrix(cvLoad(filename,0,matname)); in load()
300 bool CvMatrix::read( CvFileStorage* fs, const char* mapname, const char* matname ) in read() argument
309 obj = cvReadByName( fs, mapnode, matname ); in read()
312 obj = cvReadByName( fs, 0, matname ); in read()
335 void CvMatrix::save( const char* filename, const char* matname ) in save() argument
343 cvSave( filename, matrix, matname ); in save()
358 void CvMatrix::write( CvFileStorage* fs, const char* matname ) in write() argument
361 cvWrite( fs, matname, matrix ); in write()
/external/opencv/cxcore/include/
Dcxcore.hpp236 CvMatrix( const char* filename, const char* matname=0, int color=-1 ) : matrix(0) in CvMatrix() argument
237 { load( filename, matname, color ); } in CvMatrix()
239 CvMatrix( CvFileStorage* fs, const char* mapname, const char* matname ) : matrix(0) in CvMatrix() argument
240 { read( fs, mapname, matname ); } in CvMatrix()
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/test/
Dsparse_solver.h334 … std::cout << "INFO | Testing " << sym_to_string(it.sym()) << "sparse problem " << it.matname()
344 … std::cout << "INFO | Skip sparse problem \"" << it.matname() << "\" (too large)" << std::endl;
458 … std::cout << "INFO | Testing " << sym_to_string(it.sym()) << "sparse problem " << it.matname()
467 … std::cout << "INFO | SKIP sparse problem \"" << it.matname() << "\" (too large)" << std::endl;
/external/eigen/bench/spbench/
Dspbenchsolver.h503 statbuf << " <NAME> " << it.matname() << " </NAME>\n"; in Browse_Matrices()
525 cout<< " ====== SOLVING WITH MATRIX " << it.matname() << " ====\n"; in Browse_Matrices()
/external/eigen/unsupported/Eigen/src/SparseExtra/
DMatrixMarketIterator.h163 inline std::string& matname() { return m_matname; } in matname() function