Correct way of using blockproc
조회 수: 5 (최근 30일)
이전 댓글 표시
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
채택된 답변
Walter Roberson
2014년 5월 13일
blockproc(YourMatrix, [m n], @(S) name(S.data, a, b, c))
Guessing there about what your arguments mean.
댓글 수: 0
추가 답변 (0개)
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!