How should I access struct when loaded with importdata?

조회 수: 3 (최근 30일)
Ho Jung Kim
Ho Jung Kim 2022년 8월 4일
댓글: dpb 2022년 8월 6일
I have 2 variables called 'see' and 'hear' in 'Task1.mat' file. I am loading 'Task1.mat' using 'importdata' and trying to access see and hear using the code below:
and I am getting the following error:
Thank you.
  댓글 수: 1
dpb
dpb 2022년 8월 6일
I avoid importdata like the plague for just such reasons -- it does different things, depending --
In the above code snippet, everything before
task1=importdata('Task1.mat');
is irrelevant and of no value/use -- you replace all those variables immediately, anyway. Remove all that...
We can't really tell just looking at an image what's happening -- attach the .mat file or at least show what
whos -file Task1
returns before running the code with a clear workspace, then
whos task1
after.
If it were my code, and there are the two variables in the .mat file I wanted, I'd just write
load Task1
and use the two variables directly without the overhead of any struct getting in the way.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete-Event Simulation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by