필터 지우기
필터 지우기

how i can convert matrix to dat

조회 수: 40 (최근 30일)
george
george 2012년 9월 18일
hi, how i can convert a mat lab matrix to dat file
i want to hold the lines (of matrix) and with space between the simbols

채택된 답변

Wayne King
Wayne King 2012년 9월 18일
편집: Wayne King 2012년 9월 18일
You can just use save with the -ascii option.
x = randn(10,10);
save mymatrix.dat x -ascii
Or the forms:
save('mymatrix1.dat','x','-ascii','-tabs');
save('mymatrix2.dat','x','-ascii','-double','-tabs');
Also, see the help for dlmwrite()

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by