How to explore off diagonal elements in matrices without avoiding the for loop?
Ältere Kommentare anzeigen
I need to search if the value of off diagonal elements of many matrices are larger than a specific number. Was wondering if I can do that without using a loop.
1 Kommentar
James Tursa
am 15 Apr. 2020
Square matrices? Just the nearest off-diagonals?
Antworten (2)
Peng Li
am 15 Apr. 2020
0 Stimmen
Not sure if many matrices share the same size. Anyway if you store these matrices in a cell you prob have a chance using cellfun to accomplish this I think. You can use triu or tril to get all off diagonal elements.
Vasilis Chasiotis
am 8 Okt. 2020
Bearbeitet: Vasilis Chasiotis
am 8 Okt. 2020
A = randn(n,n); % a n-by-n matrix of random numbers
idx = eye(n,n); % the identity matrix of order n
if all( A(~idx) > K ) % check if all the off-diagonal elements of A are greater than K
...
end
So, you check all the off-diagonal elements of A without using a loop.
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!