Find the max value in a kernal
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I need to iterate over a 2d array finding the maximum value inside a given kernel. However, the kernel is custom, not square.
0 Kommentare
Antworten (1)
Roger Stafford
am 8 Mär. 2018
Bearbeitet: Roger Stafford
am 8 Mär. 2018
Let M be your matrix. Let R be a vector of the matrix's row subscripts of your kernel, and let C be a vector of corresponding column subscripts of the kernel. Then do:
mx = max(M(sub2ind(size(M),R,C))); % mx is maximum of M in kernel
0 Kommentare
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!