save a three dimensional matrix
이전 댓글 표시
How can i save a three dimensional matrix. The following does not work
for b=1:size(GP,3);
Q(:,:,b)=wtpt*GP(:,:,b);
save('G:\.........\Q.txt','Q','-ASCII','-double');
end
Thanks
채택된 답변
추가 답변 (1개)
luchen li
2017년 11월 2일
Hi, what does the wtpt* in
Q(:,:, b) = wtpt*GP(:,:,b) ; means?
댓글 수: 1
Walter Roberson
2017년 11월 2일
That is something form the user's original code. We do not have any information on what the user was attempting to compute back then. It is not relevant to the matter of saving 3D arrays: it just illustrates how the user was constructing the 3D array.
카테고리
도움말 센터 및 File Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!