How to fix an invalid data type

27 ビュー (過去 30 日間)
A
A 2019 年 9 月 12 日
コメント済み: Rik 2020 年 11 月 18 日
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 件のコメント
Walter Roberson
Walter Roberson 2019 年 9 月 12 日
What shows up for class(A) ?
Rik
Rik 2020 年 11 月 18 日
Why did you flag your own question as unclear? (just to make sure you don't try anything funny: here's an archive)

サインインしてコメントする。

回答 (2 件)

David Hill
David Hill 2019 年 9 月 12 日
Max=max(A)%do not name variable max or min
  1 件のコメント
Walter Roberson
Walter Roberson 2019 年 9 月 12 日
This is a good idea, but unfortunately in itself it will not solve the problem.

サインインしてコメントする。


J Chen
J Chen 2019 年 9 月 12 日
The winedata may contain some strange characters. Carefully exame elements of windata. Command class(A) should return 'double'.
  1 件のコメント
Walter Roberson
Walter Roberson 2019 年 9 月 12 日
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.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by