Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在、私の行列のサイズは (40x50x60)dlmwriteです。同じ行列を書く必要がありますが、行は 40 桁の長さにする必要があります。したがって、長い行を 40 で分割し、40 の数字の後に新しい行を出力するだけです。また、数字には区切り文字「\t」が必要です。
dlmwrite
現在、次を使用しています:
dlmwrite('matlaboutput', matrix, '\t')
コマンドに追加できるものはありますか、または結果に別のコマンドを使用する必要がありますか?
あなたは40列を持ってからそれを書くかもしれreshapeませmatrixん
reshape
matrix
dlmwrite('matlaboutput', reshape( matrix, [], 40 ), '\t' );