NEED HELP QUICK PLEASE
1 回表示 (過去 30 日間)
古いコメントを表示
Hi so I have a matrix (51x22) of values and a name matirx that line up with each of those vaules with a state name (51x1). I need to find the state with the greatest values. You are told to find the sum of each row and somehow make matlab find the one with the greatest sum and identify that row with name of the state in the other matrix that has names of states in it. ex. A={1 2 3; 4 5 6; 5 7 8] B=[albama; Calif; Iowa]
since the third row has the most sum, I need matlab to first find the sum of each row in A and determine which has the greatest sum and then Identify the name of the state with the identy matrix B. THank you
0 件のコメント
採用された回答
Image Analyst
2015 年 2 月 14 日
Hint: use sum(yourArray, 2) and the max() function (both return arguments of it). That should be enough hints for a smart engineer like you to solve it. If you still need help with your homework, post your attempt at the code.
2 件のコメント
Image Analyst
2015 年 2 月 14 日
Akhil, did you look up the help for max() and see what the two arguments I mentioned are? Evidently not because one of the return arguments is the location (row index) of the max!!!
You didn't post your attempt at code like I asked for if you needed any more help. And since you didn't answer about Coder I'm going to assume it has nothing whatsoever with it and remove that tag.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!