Creating m by 2 matrix
古いコメントを表示
For the following coding problem you may now use the functions rref, size, zeros, and eye. Produce a Matlab function that takes an m n matrix A and produces an m 2 matrix M, where the kth row of the matrix M is [x y] where x is the largest entry in row k of A, and y is the column containing the the entry x. If multiple columns of row k contain the entry x, then y should be the leftmost column of row k with entry x.
4 件のコメント
Walter Roberson
2021 年 9 月 25 日
Looks like homework. What have you accomplished so far?
Kojo Anim
2021 年 9 月 25 日
Image Analyst
2021 年 9 月 25 日
"I can demonstrate with examples what the problem seeks to achieve." How? Pen and paper? Not code?
回答 (1 件)
David Hill
2021 年 9 月 25 日
[a,b]=max(A,[],2);
M=[a,b];
2 件のコメント
Walter Roberson
2021 年 9 月 25 日
note that this is obviously a homework question
David Hill
2021 年 9 月 25 日
That is why I didn't really answer the question.
カテゴリ
ヘルプ センター および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!