필터 지우기
필터 지우기

Why I got the error "Operator '-' is not supported for operands of type 'struct'."?

조회 수: 55 (최근 30일)
My code
%Convert from Fahrenheit to Kelvin
TempK = ((X(:,1)-32)*5/9)+273.15;
  댓글 수: 6
Sulaymon Eshkabilov
Sulaymon Eshkabilov 2020년 5월 8일
Can you show the content of your imported data (variable) X?

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

채택된 답변

Cris LaPierre
Cris LaPierre 2020년 5월 8일
편집: Cris LaPierre 2020년 5월 8일
When importing a spreadsheet, importdata returns a scalar structure array (see here). Your error, then, is because you are not accessing the data properly (see examples on the page I linked to).
Is there a reason you are using this import function? I'd suggest using readtable instead. You will have to learn how to access data in a table as well. I'd suggest this short video.

추가 답변 (1개)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2020년 5월 8일
Answer:
X= X.data(:,1);
TempK = ((X1-32)*5/9)+273.15;

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by