필터 지우기
필터 지우기

Any suggestion to replace the diagonal values of matrices in a 3D array?

조회 수: 3 (최근 30일)
Any suggestion to replace the diagonal values of matrices in a 3D array?
in case1 to "0"
in case1 to "NaN"
e.g. for NaN
M_3D=randi(100, 4,4,3); %fake input
N=size(M_3D,1);
mask=1:N+1:end)=nan;
M_3D=M_3D.*mask;
  댓글 수: 4
Steven Lord
Steven Lord 2023년 11월 6일
One possibility is points at subscripts n*ones(1, ndimsOfArray) for n = 1:min(size(theArray)). Once you reach any "edge" of the array you stop.
So for an array of size (4, 3, 5) those would be the elements at subscripts (1, 1, 1), (2, 2, 2), and (3, 3, 3). That matches conceptually the behavior of the diag function on non-square matrices.
A = reshape(1:12, 3, 4)
A = 3×4
1 4 7 10 2 5 8 11 3 6 9 12
diag(A) % (1, 1), (2, 2), and (3, 3) since min(size(A)) is 3.
ans = 3×1
1 5 9
julian gaviria
julian gaviria 2023년 11월 6일
@Steven Lord, following you example, I want to replace the elements 1, 5, 9, 10, 14, 18, 19, 23, and 27 either by "0" or by "NaN" values. These are two different cases. Apologies for not providing all the info in the initial post. Sometimes my 3D matrices have NaN values in the diagonals, which I must replace by "0" value.s @Dyuman Joshi's suggestion worked out.
Thanks anyway.

댓글을 달려면 로그인하십시오.

채택된 답변

Dyuman Joshi
Dyuman Joshi 2023년 11월 6일
Replacing diagonal values of each 2D matrix of a 3D matrix with NaN
M = randi(100, 4,4,3); %fake input
N = eye(size(M,[1 2]));
M(M&N)=NaN
M =
M(:,:,1) = NaN 88 80 30 51 NaN 98 73 75 100 NaN 63 68 51 61 NaN M(:,:,2) = NaN 13 65 60 99 NaN 55 50 16 24 NaN 94 46 52 86 NaN M(:,:,3) = NaN 50 49 17 41 NaN 68 52 79 80 NaN 79 83 47 86 NaN
  댓글 수: 4

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Sparse Matrices에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by