How to fix an invalid data type

27 visualizaciones (últimos 30 días)
A
A el 12 de Sept. de 2019
Comentada: Rik el 18 de Nov. de 2020
This is my script,
%This script calculates some statistics for the wine data
load('winedata');
A=winedata; %matrix
max=max(A);
min=min(A);
sigma=std(A);
mean=mean(A);
% End of script
Error using max
Invalid data type. First argument must be numeric or logical.
Error in Wine_Data (line 7)
max=max(A);
How would I fix this?
  2 comentarios
Walter Roberson
Walter Roberson el 12 de Sept. de 2019
What shows up for class(A) ?
Rik
Rik el 18 de Nov. de 2020
Why did you flag your own question as unclear? (just to make sure you don't try anything funny: here's an archive)

Iniciar sesión para comentar.

Respuestas (2)

David Hill
David Hill el 12 de Sept. de 2019
Max=max(A)%do not name variable max or min
  1 comentario
Walter Roberson
Walter Roberson el 12 de Sept. de 2019
This is a good idea, but unfortunately in itself it will not solve the problem.

Iniciar sesión para comentar.


J Chen
J Chen el 12 de Sept. de 2019
The winedata may contain some strange characters. Carefully exame elements of windata. Command class(A) should return 'double'.
  1 comentario
Walter Roberson
Walter Roberson el 12 de Sept. de 2019
When you do
mean=mean(A);
the first time, then there is no variable named mean so MATLAB looks along the search path and finds a function named mean and uses the function. Then you are assigning the result to the variable mean
The second time through, you have a variable named mean so mean(A) is interpreted as trying to index into the variable.
With the script you posted, if you only execute the script once, then you do not have a problem in that code immediately, but you do leave variables mean and min and max in the base workspace, where they will cause problems if you try to execute the script again, or try do use any of those three at the command line or in another script.
You should learn to use functions, and you should avoid using variables that are the same name as any of the common library routines.

Iniciar sesión para comentar.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by