save で保存先を変数指定する方法
조회 수: 57 (최근 30일)
이전 댓글 표시
name="alpha"
mkdir(name)
こうすると、現在のフォルダ内にalphaというフォルダが作成されるかと思います。
このalphaの中にsaveコマンドを使い、zeta.matを保存したいです。
通常、『save zeta』でzeta.matが現在のフォルダーに作成されるところを、alphaの中に入るようにできますか?
댓글 수: 0
채택된 답변
madhan ravi
2018년 10월 25일
%get the directory of your input files:
pathname = fileparts('/input/file');
%use that when you save
matfile = fullfile(pathname, 'output.mat');
figfile = fullfile(pathname, 'output.fig');
save(matfile, ...');
saveas(figfile, ...');
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 ワークスペース変数と MAT ファイル에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!