Clear Filters
Clear Filters

Matlab can't readtable on Mac, please help me.

6 views (last 30 days)
  2 Comments
Stephen23
Stephen23 on 8 Jun 2024
Of course MATLAB cannot find that file, it could be anywhere on your computer.
Provide READTABLE with the complete relative/absolute path to that file. FULLFILE may be useful.
Ghazi
Ghazi on 9 Jun 2024
how i do like this, can you show me please, thank you.

Sign in to comment.

Accepted Answer

Stephen23
Stephen23 on 9 Jun 2024
"how i do like this, can you show me please, thank you."
P = 'absolute or relative path to where the file is saved';
F = fullfile(P,'GDP.csv');
T = readtable(F);

More Answers (0)

Categories

Find more on File Name Construction in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!