Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

??? Attempt to reference field of non-structure array. Error in ==> at 11 x=data.x;

조회 수: 1 (최근 30일)
LOKESH
LOKESH 2016년 3월 23일
마감: MATLAB Answer Bot 2021년 8월 20일
I am using a dataset heart.dat. When I run i get this error..Any suggestion/error?
Code:
data=load('heart.dat'); x=data.x; x=x';
Thanks
  댓글 수: 3
LOKESH
LOKESH 2016년 3월 23일
https://archive.ics.uci.edu/ml/machine-learning-databases/statlog/heart/
yes it does not contain x..actually i am doing clustering on this dataset
Adam
Adam 2016년 3월 23일
편집: Adam 2016년 3월 23일
What are you expecting x to be then?
You get a 270*14 numeric matrix when you load that data, not a struct. If you want a specific column of the data you can use e.g.
x = data(:,1);
but it depends entirely what you want to access from the data.

답변 (0개)

이 질문은 마감되었습니다.

제품

Community Treasure Hunt

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

Start Hunting!

Translated by