1) 실수 형태로 저장이 됨.
savefile = 'a.txt';
save savefile B -ascii;
2) Matlab 정수로 파일 저장
fid = fopen('data.txt', 'wt');
for i = 1:length(B)
fprintf(fid,'% g\t% g\t% g\t% g\n',B(i,1), B(i,2), B(i,3), B(i,4) );
end
fclose(fid);
bb = uint8(B); 로 하면 정수형태가 되나 save 명령으로 저장이 안됨.
http://www.mathworks.com/matlabcentral/newsreader/view_thread/255696
댓글 없음:
댓글 쓰기