How to fix an invalid data type

27 Ansichten (letzte 30 Tage)
A
A am 12 Sep. 2019
Kommentiert: Rik am 18 Nov. 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 Kommentare
Walter Roberson
Walter Roberson am 12 Sep. 2019
What shows up for class(A) ?
Rik
Rik am 18 Nov. 2020
Why did you flag your own question as unclear? (just to make sure you don't try anything funny: here's an archive)

Melden Sie sich an, um zu kommentieren.

Antworten (2)

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

Melden Sie sich an, um zu kommentieren.


J Chen
J Chen am 12 Sep. 2019
The winedata may contain some strange characters. Carefully exame elements of windata. Command class(A) should return 'double'.
  1 Kommentar
Walter Roberson
Walter Roberson am 12 Sep. 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.

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by