Common Library
0.9.5
|
作成者 tadah_fussy [詳解]
名前空間 | |
coord_lib | |
座標計算関数用名前空間 | |
error_lib | |
エラーチェック・処理ルーチン用名前空間 | |
exception | |
例外用名前空間 | |
indexer | |
添字演算子用名前空間 | |
math_lib | |
数学関数用名前空間 | |
numeric_lib | |
string_lib | |
文字列専用小道具ツール | |
データ構造 | |
struct | Coord |
座標定義用構造体(2D用) [詳解] | |
class | Matrix |
行列(二次元配列)クラス [詳解] | |
struct | SquareMatrix |
正方行列クラス [詳解] | |
class | SymmetricMatrix |
対称行列クラス [詳解] | |
関数 | |
template<class T > | |
std::ostream & | operator<< (std::ostream &os, const Coord< T > &c) |
ストリーム出力 [詳解] | |
template<class T > | |
std::ostream & | operator<< (std::ostream &os, const Matrix< T > &mat) |
ストリーム出力(行列) [詳解] | |
template<class T > | |
std::ostream & | operator<< (std::ostream &os, const SquareMatrix< T > &mat) |
ストリーム出力(正方行列) [詳解] | |
template<class T > | |
std::ostream & | operator<< (std::ostream &os, const SymmetricMatrix< T > &mat) |
ストリーム出力(対称行列) [詳解] | |
作成者 tadah_fussy
std::ostream& tadah_fussy::operator<< | ( | std::ostream & | os, |
const Coord< T > & | c | ||
) |
ストリーム出力
os | 対象の出力ストリームへの参照 |
c | 出力対象の座標への参照 |
std::ostream& tadah_fussy::operator<< | ( | std::ostream & | os, |
const Matrix< T > & | mat | ||
) |
ストリーム出力(行列)
os | 対象の出力ストリームへの参照 |
mat | 出力対象の行列への参照 |
std::ostream& tadah_fussy::operator<< | ( | std::ostream & | os, |
const SquareMatrix< T > & | mat | ||
) |
ストリーム出力(正方行列)
os | 対象の出力ストリームへの参照 |
mat | 出力対象の正方行列への参照 |
std::ostream& tadah_fussy::operator<< | ( | std::ostream & | os, |
const SymmetricMatrix< T > & | mat | ||
) |
ストリーム出力(対称行列)
os | 対象の出力ストリームへの参照 |
mat | 出力対象の対称行列への参照 |