Info
この質問は閉じられています。 編集または回答するには再度開いてください。
error using 256x256matrix
1 回表示 (過去 30 日間)
古いコメントを表示
A=[2 4 5 3
6 8 9 2
5 1 3 4 ];
A_1_10 = A(:,:,ones(10,1));
k = nchoosek(1:9,3);
k2 = k(all(diff(k,1,2)>1,2),:)
k3 = k2(1:floor(size(k2,1)/10):end,:)
A_1_10(bsxfun(@plus,k3(1:10,:),(0:9:9^2).')) = 0
i get answer for this
nut for 256x256 i am not getting the answer in which some values must be replaced by zero
0 件のコメント
回答 (1 件)
Andrei Bobrov
2012 年 2 月 14 日
A=[2 4 5 3
6 8 9 2
5 1 3 4 ];
n = numel(A);
m = 10;
t = 4;
A_1_10 = A(:,:,ones(m,1));
k = nchoosek(1:n,t);
k2 = k(all(diff(k,1,2)>1,2),:)
k3 = k2(1:floor(size(k2,1)/m):end,:)
A_1_10(bsxfun(@plus,k3(1:m,:),(0:n:n*(m-1)).')) = 0
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!