I need help setting my current directory and loading data.
2 ビュー (過去 30 日間)
古いコメントを表示
UPDATE: I have solved the issue and no longer need any help! :)
Hello,
I keep trying to set my current directory and load the data like this:
>> cd '/Users/marymadelynnlupton/Desktop/FALL 2020/Probs. & Stats./MatLab Projects/Project 2'
load ECE2523_Project2_Data; %loading newSurveyData to my workspace
But I keep getting this error:
Error using load
Unable to read file 'ECE2523_Project2_Data'. No such file or directory.
I am not sure what's going on. I am positive I saved the data file it in the same directory as my script is saved.
0 件のコメント
採用された回答
VBBV
2020 年 9 月 8 日
編集済み: VBBV
2020 年 9 月 8 日
Type
% if true
% code
% end
>> pwd
>> ls *.*
at the command window After setting the folder path where you saved the files
Then locate the file which you want to load into workspace
2 件のコメント
VBBV
2020 年 9 月 8 日
編集済み: VBBV
2020 年 9 月 8 日
if you are able to view the filename in the specified folder then do the following. Use the function form instead of command form which you are doing
%if true
% code
%end
load('ECE2523_Project2_Data.mat')
% use function form instead of command form when the filename is a string
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Search Path についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!