필터 지우기
필터 지우기

how to print an array values and save the values in .mat file.

조회 수: 2 (최근 30일)
Muhammad Umer
Muhammad Umer 2015년 9월 22일
답변: Star Strider 2015년 9월 22일
for i=1:10
j(i)=i*5:
end
output will be:
5,
10,
......
50.
how to print the j(i) array and save it to .mat file?

채택된 답변

Star Strider
Star Strider 2015년 9월 22일
Printing them is relatively straightforward:
for i=1:10
j(i)=i*5;
end
fprintf('%.0f,\n', j)
Saving is as easy:
save('j.mat', 'j')
Call the file anything you want. I called it ‘j.mat’. Be sure to keep the single quotes around the file name and the variables you want to save to it. (The save call I did not specifically test, but should work.)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by