How to find the page of an array with it number/name and values, having max and min values as a whole page

3 ビュー (過去 30 日間)
I have an array (10*8*12) and has find the page with its values and number, having max and min values as whole.
For example X (10*8*12) page number 5 (10*8) of array X has min value as whole same for max As we compare the matrix or subtract one from another A == B; z = A - B; In this case we do not need page number/name as we have two different single matrix.
  4 件のコメント
Rik
Rik 2018 年 6 月 18 日
Can you give a small example (something like 2*3*4)? Am I understanding you correctly if I say you want to find the page containing the maximum value of the entire array?
Shakir Hussain
Shakir Hussain 2018 年 6 月 19 日
Yes,by comparing the pages. You got it

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

採用された回答

Jan
Jan 2018 年 6 月 19 日
X = rand(10, 8, 12);
X(5, 6, 7) = 20; % The maximum
[maxValue, maxIndex] = max(X(:));
[i1, i2, i3] = ind2sub(size(X), maxIndex)
% i1 = 5
% i2 = 6
% i3 = 7 ==> this is the "page"
  4 件のコメント
Shakir Hussain
Shakir Hussain 2018 年 6 月 20 日
because it is directly getting the number from describe code (X(5, 6, 7) = 20; % The maximum). What ever we have (1....12) for i3 in the above code the result will be same it is.
Jan
Jan 2018 年 6 月 20 日
@Shakir Hussain: "It is indexing only the first page of X" - it is not clear to me, what this means. The code finds the 3rd dimension, which contains the maximum value of the array.
Of course you will not set the element (5,6,7) to 20 in your real code. This was just an example to get a reproducible result.
X = rand(10, 8, 12);
[Value, Index] = max(X(:));
[i1, i2, i3] = ind2sub(size(X), Index)
Now i3 depends on the random data.
If this does not solve your needs, please give an explicit example of the inputs (with a 2x3x4 array) and the wanted output. Currently too much guessing is required to post a reliable answer.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by