Borrar filtros
Borrar filtros

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);.

1 visualización (últimos 30 días)
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!

Respuesta aceptada

Walter Roberson
Walter Roberson el 20 de Mayo de 2017
"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.

Más respuestas (0)

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by