Function Max for Cell
5 ビュー (過去 30 日間)
古いコメントを表示
How to use function max for cell?
Before I used max(b), but I am getting error and i use ([b{:}]) it looks like sum
this's my code
a= input ('Number of Participant :');
for c = 1:a
str1 = ['What''s the name (',num2str(c),') :'];
str2 = ['What''s his/her value (',num2str(c),') :'];
b{c,1} = input(str1,'s');
b{c,2} = input(str2);
end
disp(b)
[m,n]= size (b);
Mb=max([b{:}])
when i try that code above, i think the result is total of value
i dont want total of value, i just want max of the value
anybody know?
please help me :)
1 件のコメント
Azzi Abdelmalek
2012 年 10 月 17 日
編集済み: Azzi Abdelmalek
2012 年 10 月 17 日
Mb=max([b{:}]) is correct
or
Mb=max(b{:})
採用された回答
その他の回答 (1 件)
Doug Hull
2012 年 10 月 17 日
Why are you storing the results in a cell array? Also, using input command is going to be very frustrating for users. There must be a better way f getting input, like edit a text file?
If you insist though:
c{1,2} = 11;
c{2,2} = 22;
c{3,2} = 33;
[c{:,2}]'
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Hypothesis Tests についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!