saving files in a folder
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Kofi Agyemang Amankwah
il 11 Giu 2023
Commentato: Kofi Agyemang Amankwah
il 11 Giu 2023
I am trying to save some data named (cn,y,z) into the directory with folder, vfolder. I expect the file (cn,y,z) to be contained in Pzz5X10. I keep getting errors anytime I run the code below. Any help will be appreciated.
Thanks.
zz = '10';
f = '5';
vfolder = pwd;
save([vFolder,'\' 'Pzz'+f+'X'+zz.mat'],'cn','y','z');
0 Commenti
Risposta accettata
Stephen23
il 11 Giu 2023
save([vFolder,'\' 'Pzz'+f+'X'+zz.mat'],'cn','y','z');
% ^^^^^^^ invalid syntax
Better:
fnm = sprintf('Pzz%dX%d.mat',5,10);
save(fullfile(vFolder,fnm),'cn','y','z')
Più risposte (0)
Vedere anche
Categorie
Scopri di più su File Operations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!