Saving with filename from excel
Ältere Kommentare anzeigen
Hi
I getting text from excel cell A1. This value changes for different dataset.
Question: How to use it as a filename for saving image.
I am currently using saveas(gcf,'Test.jpg');
or saveas(gca, fullfile(folderName, 'Test'),'jpeg');
Thanks
7 Kommentare
TAB
am 23 Mai 2018
fname = xlsread('your_excel.xlsx', 'A1');
saveas(gcf, [fname '.jpg']);
Siva Ratnasingam
am 23 Mai 2018
Paolo
am 23 Mai 2018
Try
saveas(gcf,fname,'jpg')
Siva Ratnasingam
am 23 Mai 2018
Paolo
am 23 Mai 2018
Try
saveas(gcf,cell2mat(fname),'jpg')
Siva Ratnasingam
am 23 Mai 2018
Paolo
am 23 Mai 2018
You are welcome, I wrote an answer for the question so that other people can easily find the solution if they are facing the same problem.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu File Operations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!