Clear Filters
Clear Filters

Index exceeds matrix dimensions.

1 view (last 30 days)
for j=1:96 %Display the 3color channel
for k=1:96
mR=re(j,k,1);
mG=re(j,k,2);
mB=re(j,k,3);
d=[mR mG mB];
disp('d value is');
disp(d);

Accepted Answer

KSSV
KSSV on 6 Mar 2017
[m,n,p] = size(re) ;
for j=1:m %Display the 3color channel
for k=1:n
mR=re(j,k,1);
mG=re(j,k,2);
mB=re(j,k,3);
d=[mR mG mB];
disp('d value is');
disp(d);
end
end
  7 Comments
KSSV
KSSV on 7 Mar 2017
Give dimensions..
vasantha malairamar
vasantha malairamar on 7 Mar 2017
768*768 image divided into 8*8 block

Sign in to comment.

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!