Correct way of using blockproc
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Raldi
il 13 Mag 2014
Risposto: Walter Roberson
il 13 Mag 2014
I have a matrix, and a function similar to
function val = name(matWin, a, b, c)
What is the right way of calling blockproc and passing all the arguments of the function, so i can apply it to discrete 8x8 blocks in my original matrix?
0 Commenti
Risposta accettata
Walter Roberson
il 13 Mag 2014
blockproc(YourMatrix, [m n], @(S) name(S.data, a, b, c))
Guessing there about what your arguments mean.
0 Commenti
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!