フィルターのクリア

How to save the output in a certain folder?

551 ビュー (過去 30 日間)
ck
ck 2016 年 6 月 26 日
移動済み: Stephen23 2022 年 9 月 3 日
How can I save a certain output in a specified folder? What function can I use for this?
Thank you.

採用された回答

Chad Greene
Chad Greene 2016 年 6 月 26 日
To save the variables x and y to a file called "myfile.mat" in a folder called "myfolder" try this:
x = 1:360;
y = sind(x);
save('myfolder/myfile.mat','x','y')
If the folder is not a subfolder of your current directory, you can specify the full filepath to that folder instead of "myfolder/..."

その他の回答 (1 件)

Sarmed Wahab
Sarmed Wahab 2022 年 9 月 3 日
移動済み: Stephen23 2022 年 9 月 3 日
I am posting this for people finding relative answer.
for i = 1:5
x = rand(10,1) ;
y = 3*x + i^2 ;
plot(x,y,"bo"); hold on;
a = plot(x,y) ; hold off;
dest_dir = "C:\folder\PROJECT DATA\figure" + i ;
mkdir(dest_dir);
filename = "plot"+string(i)+".png";
% saveas(fig,filename)
fig_file = fullfile(dest_dir , filename)
%saveas(a, filename) %save the file there directory
saveas( a, fig_file)
result = "results"+i;
matfile = fullfile(dest_dir, result);
save(matfile);
%save(result)
end

カテゴリ

Help Center および File ExchangePrinting and Saving についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by