why readtable create field "D" in the struct "D1"

조회 수: 1 (최근 30일)
Luca Re
Luca Re 2023년 6월 16일
편집: Walter Roberson 2023년 6월 17일
function D1=TEST()
D=readtable('test.txt','delimiter',',');
save canc.tset D
D1=load('canc.tset',"-mat")
end
i access it using
D1.D...
it's possibile to avoid "D" field?
  댓글 수: 1
Stephen23
Stephen23 2023년 6월 16일
편집: Stephen23 2023년 6월 16일
"why readtable create field "D" in the struct "D1""
It doesn't. READTABLE has nothing to do with the scalar structure returned by LOAD.

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

채택된 답변

Stephen23
Stephen23 2023년 6월 16일
편집: Stephen23 2023년 6월 16일
If there is only one variable in the MAT file (regardless of its extension) and you do not know/care what its name is:
C = struct2cell(load(..));
assert(isscalar(C),'Only one array can be LOADed')
T = C{1}
If the variable name is known in advance, e.g. "D"
S = load(..)
T = S.D
  댓글 수: 12
Stephen23
Stephen23 2023년 6월 17일
save('prova.txt','T')
SAVE is an exception: it requires the name/s of the variable/s that you want to save, not the variables themselves. That is explained and shown in the SAVE documentation. You should look at the documentation of every function that you use.
Luca Re
Luca Re 2023년 6월 17일
thank you.. I appreciate the effort you took in answering me

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Cell Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by