Creating m by 2 matrix

5 次查看(过去 30 天)
Kojo Anim
Kojo Anim 2021-9-25
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 个评论
Image Analyst
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
David Hill 2021-9-25
[a,b]=max(A,[],2);
M=[a,b];
  2 个评论
Walter Roberson
Walter Roberson 2021-9-25
note that this is obviously a homework question
David Hill
David Hill 2021-9-25
That is why I didn't really answer the question.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by