Filter löschen
Filter löschen

Cannot load data to matlab

1 Ansicht (letzte 30 Tage)
Joel Schelander
Joel Schelander am 8 Apr. 2021
Beantwortet: Star Strider am 8 Apr. 2021
I have a file ARG_1. It is just a cell array that I have previously calculated.
Now I just want to load it:
load ARG_1
but I get the error:
Error using load
Unable to read file 'ARG_1'. No such file or directory.
Error in DATA (line 18)
load ARG_1
BUT IT DOES EXIST, and I can load it manually by clicking on the file as any other. It is in the same folder, so that is not an issue, don't know whats wrong.

Akzeptierte Antwort

Star Strider
Star Strider am 8 Apr. 2021
It may need the extension as well:
load ARG1.mat
or:
load('ARG1.mat')
.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by