how can I find the cell no: of the minimum value in a m*n*x matrix

A=[1 2 3; 4 5 6]; I should get an answer (1,1) for the value 1 which is placed in A. 1st row, 1st column.

回答 (1 件)

Ahmet Cecen
Ahmet Cecen 2014 年 8 月 8 日

0 投票

index=find(A==min(A(:)));
Then A(index) will give you the minimum value. If you need the explicit 3D index checkout the function "ind2sub" after finding the above index.

1 件のコメント

Michael Haderlein
Michael Haderlein 2014 年 8 月 8 日
Actually, the second output argument of min is the same:
[~,ind]=min(A(:))

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

カテゴリ

ヘルプ センター および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

質問済み:

2014 年 8 月 8 日

コメント済み:

2014 年 8 月 8 日

Community Treasure Hunt

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

Start Hunting!

Translated by