私はOctaveで多くの行列を乗算するプログラムを実行しています。すべての行列はセル行列に格納されます。どこ:
cell(index,1) is the matrix in the left
cell(index,2) is the matrix in the right
cell(index,3) is the result.
この方法で多くの行列をファイルに保存したいと思います。例:
cell(index,1) cell(index,2) = cell(index,3)
cell(index,1) cell(index,2) = cell(index,3)
cell(index,1) cell(index,2) = cell(index,3)
等々。
関数が存在することは知っていますdlmwrite
が、この形式を使用できるように、その使用方法が正確にはわかりません(私はオクターブが初めてです)。