ind2sub output dimension
1 回表示 (過去 30 日間)
古いコメントを表示
My question is regarding the output of the ind2sub function. In my code, since the input dimention of ind2sub changes, i should expect the output dimention to change. But a code like this is not working.
B = rand(6,6,6);
A(1:ndims(B)) = ind2sub(size(B),56);
The output of the above code is [56 56 56] while I'm expecting something like [2 4 2].
Any suggestion?
0 件のコメント
採用された回答
Fangjun Jiang
2011 年 12 月 11 日
Follow the same clue in the answer to your other question, you can do the following:
B=rand(4,5,6);
Ind=(20:25).';
n=ndims(B);
Sub=cell(1,n);
[Sub{:}]=ind2sub(size(B),Ind)
SubMatrix=cell2mat(Sub)
Sub =
[6x1 double] [6x1 double] [6x1 double]
SubMatrix =
4 5 1
1 1 2
2 1 2
3 1 2
4 1 2
1 2 2
その他の回答 (1 件)
bym
2011 年 12 月 10 日
you need multiple assignments for that function.
[r,c,p]=ind2sub(size(B),56)
r =
2
c =
4
p =
2
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Directed Graphs についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!