HOW TO MOVE THE DIAGONAL ELEMENTS IN MATRIX (ONE PIXELS) FOR IMAGE PROCESSING
3 views (last 30 days)
Show older comments
HOW TO MOVE THE DIAGONAL ELEMENTS IN MATRIX (ONE PIXELS) FOR IMAGE PROCESSING
2 Comments
Accepted Answer
Andrei Bobrov
on 12 Sep 2012
Edited: Andrei Bobrov
on 12 Sep 2012
I = [1 2 4
2 5 6
1 3 8 ];
ii = 1:size(I,1)+1:numel(I);
I(ii) = I(ii(mod(ii - 2,3)+1));
or
I(eye(size(I))>0) = circshift(diag(I),1);
More Answers (2)
Sean de Wolski
on 11 Sep 2012
3 Comments
Sean de Wolski
on 12 Sep 2012
Edited: Sean de Wolski
on 12 Sep 2012
So she's not a deer during hunting season :)
Image Analyst
on 12 Sep 2012
Ah - I thought she was like a rescue dog, locating and pulling people from rubble after earthquakes.
See Also
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!