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.

 채택된 답변

Star Strider
Star Strider 2021년 4월 8일

0 개 추천

It may need the extension as well:
load ARG1.mat
or:
load('ARG1.mat')
.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 File Operations에 대해 자세히 알아보기

제품

릴리스

R2019a

태그

질문:

2021년 4월 8일

답변:

2021년 4월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by