我在 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
,但我不知道如何使用它(我是八度的新手),所以我可以拥有这种格式。