import to the workspace a .mat file saved in a folder other than pwd
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Alberto Acri
am 22 Jul. 2023
Bearbeitet: Stephen23
am 22 Jul. 2023
How can I import a .mat file saved in a folder other than pwd to the workspace?
folder = 'C:\Users\Desktop\folder_test';
file = 'test.mat';
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Bruno Luong
am 22 Jul. 2023
Bearbeitet: Bruno Luong
am 22 Jul. 2023
folder = 'C:\Users\Desktop\folder_test';
file = 'test.mat';
load([folder filesep() file])
0 Kommentare
Siehe auch
Kategorien
Mehr zu Filename Construction finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!