フィルターのクリア

Storing matrix value

1 回表示 (過去 30 日間)
FIR
FIR 2012 年 5 月 23 日
I have a matrix A =
6 2 3
7 9 0
8 3 4
i have found the minimum value from 1st row,
M=min(A(1,:))
i get value as M=2,now i want to store other values in that column which is 9 and 3 in a variable Z,
so i will have
Z=
9
3
please help

採用された回答

Andrei Bobrov
Andrei Bobrov 2012 年 5 月 23 日
[id,id]=min(A(1,:))
Z = A(2:end,id)

その他の回答 (1 件)

Wayne King
Wayne King 2012 年 5 月 23 日
A = [ 6 2 3
7 9 0
8 3 4];
[minval,I] = min(A(1,:));
z = A(2:end,I);
  1 件のコメント
FIR
FIR 2012 年 5 月 23 日
Thanks wayne

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

カテゴリ

Help Center および File ExchangeStatistics and Machine Learning Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by