필터 지우기
필터 지우기

Hi, I have been trying to run a script and got the error: Undefined operator '+' for input arguments of type 'struct'.   Error in coarsegrain (line 41)   sum = sum + y(scale*i + j);   Error in mse (line 35)   scaled = coarsegrai​n(method,y​,scale);.

조회 수: 4 (최근 30일)
Hi,
I have been trying to run a script and got the error: Undefined operator '+' for input arguments of type 'struct'.  
Error in coarsegrain (line 41)   sum = sum + y(scale*i + j);   Error in mse (line 35)   scaled = coarsegrain(method,y,scale);
Displayed in the work space:   maxScale=3,
val 3x1280 double,
x 1x1 struct.   Could someone give me some guidance how to solve the problem?
Many thanks!

채택된 답변

Walter Roberson
Walter Roberson 2017년 5월 20일
"If 01911m is a MAT-file, the syntax you've used for load will make x into a struct array with one field per variable in the MAT-file. You probably don't want to take the std of the struct but you want to operate on one of the fields of the struct instead"
You should look more closely at the documentation for load(): https://www.mathworks.com/help/matlab/ref/load.html#outputarg_S . When you assign the output of load() to a variable then the output is:
"Loaded variables, returned as a structure array, if filename is a MAT-File.
Loaded data, returned as an m-by-n array of type double, if filename is an ASCII file. m is equal to the number of lines in the file, and n is equal to the number of values on a line."
You are encountering the MAT version, so the output of load() is a structure array.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by