2016-07-14から1日間の記事一覧

C/C++で行列演算クラスを書きました

行列演算が必要&外部ライブラリを使いたくないという状況ができましたので作成しました. ※以下ヘッダ部抜粋 #include <iostream> #include <vector> /* * 行列演算クラス */ class Ematrix { private: int row; int col; std::vector< std::vector<long long> > value; public: // 1行1列</long></vector></iostream>…