How to save result images?

조회 수: 1 (최근 30일)
Sajina Rose
Sajina Rose 2019년 10월 1일
답변: Walter Roberson 2019년 10월 1일
I need to write the output figures in seperate folder........can anyone please help me...?

채택된 답변

Walter Roberson
Walter Roberson 2019년 10월 1일
output_folder = 'C:\Users\Sajina\Documents\MATLAB\Project9\outputs';
outfile = fullfile(output_folder, 'fig1.png');
saveas(gcf, outfile);
the file will be written into the named directory.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by