How to save matlab plot automatically into a folder as a JPG
147 次查看(过去 30 天)
显示 更早的评论
Hello I have csv data file and I am plotting it but I need to save this plot as JPG into a folder automatically, how can I do that ?
回答(1 个)
Shivang Srivastava
2021-4-21
As per my understanding you wanted to save a plot as a jpg file into a folder. I tried to reproduce the error you are facing but the error was not reproducible at my end.
data = csvread('test.csv');
wavelength = data(:,1);
intensity = data(:,2);
plot(wavelength, intensity);
ylabel('wavelength');
xlabel('intensity');
title('wavelength-intensity');
saveas(gcf,'C:\test.jpg','jpg')
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Printing and Saving 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!