import to the workspace a .mat file saved in a folder other than pwd
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
その他の回答 (1 件)
Bruno Luong
2023 年 7 月 22 日
編集済み: Bruno Luong
2023 年 7 月 22 日
folder = 'C:\Users\Desktop\folder_test';
file = 'test.mat';
load([folder filesep() file])
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Filename Construction についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!