saveas(gcf​,save_name​+".png")をフ​ォルダを指定して保存

122 visualizaciones (últimos 30 días)
晃平
晃平 el 21 de Jul. de 2023
Comentada: 晃平 el 8 de Feb. de 2024
saveas(gcf,save_name+".png");を決まったフォルダに保存するためにはどのようにすればよろしいでしょうか。

Respuesta aceptada

Kojiro Saito
Kojiro Saito el 21 de Jul. de 2023
saveasの第2引数に「フォルダー名\」 (Windowsの場合)、「フォルダー名/」(LinuxとMacの場合)を入れるか、fullfileでフォルダー名入りのパスを作ればできます。
例えば現在のフォルダーの中にあるresultというフォルダーに入れたい場合、
saveas(gcf, fullfile("result", save_name+".png"));
または
saveas(gcf, "result\" + save_name+".png");
でできます。
フルパスを指定することもできます。
saveas(gcf, "C:\Result\" + save_name+".png");
  1 comentario
晃平
晃平 el 8 de Feb. de 2024
ご回答ありがとうございました。

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 印刷と保存 en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!