Why do I get this error?
>> MAX
a =
2 3 5
Index exceeds the number of array elements (1).
Error in MAX (line 2)
b = max(a)
I get the same kind of error when I dot this:
g1 = input('Give a number: ')
g2 = input('Give another number: ')
gg = max([g1,g2])

3 件のコメント

Andrei Bobrov
Andrei Bobrov 2020 年 1 月 15 日
編集済み: Andrei Bobrov 2020 年 1 月 15 日
On my desktop:
>> g1 = input('Give a number: ');
g2 = input('Give another number: ');
gg = max([g1,g2])
Give a number: 45
Give another number: 78
gg =
78
>>
And what is it 'MAX'?
WalterWhite
WalterWhite 2020 年 1 月 15 日
Both of the above mentioned codes are functioning properly without any error as they are supposed to
a = [2 3 5]
a =
2 3 5
>> b = max(a)
b =
5
>> reading
Give a number: 3
g1 =
3
Give another number: 99
g2 =
99
gg =
99
Ellen De Jonghe
Ellen De Jonghe 2020 年 1 月 15 日
I don't know why, but like, 5 minutes ago, this script didn't function.
And now it does...
Strange..
Still thank you guys!

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

回答 (1 件)

Walter Roberson
Walter Roberson 2020 年 1 月 15 日

3 投票

You accidentally defined a variable with the name max.

カテゴリ

ヘルプ センター および File ExchangeStartup and Shutdown についてさらに検索

タグ

質問済み:

2020 年 1 月 15 日

コメント済み:

2020 年 1 月 15 日

Community Treasure Hunt

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

Start Hunting!

Translated by