Matlab says continue entering statements. I don't know what's wrong.

22 views (last 30 days)
Hi.
This is my code:
k = [67.25;
205.25;
223.25;
319.25;
325.25]
nk = 5;
cso = zeros(5,4);
m=-1;
%%For channel subtraction from each other
for i = 1:nk
for j = 1:nk-1
cso(i,j)= k(1,1)- k(j+1,1)
if j==5
kShift = circshift(k,m)
m=m-1;
end
end
I don't know why matlab freezes. What I want this code to do is to subtract all elements from the first element. Then I shift the vector and do it all over again.
Can someone please point my mistake.
Thank you.

Accepted Answer

Chandrasekhar
Chandrasekhar on 27 Mar 2014
Edited: Chandrasekhar on 27 Mar 2014
There should be one more 'end' at the last for closing the for loop
clc
k = [67.25; 205.25; 223.25; 319.25; 325.25];
nk = 5;
cso = zeros(5,4);
m=-1;
%%For channel subtraction from each other
for i = 1:nk
for j = 1:nk-1
cso(i,j)= k(1,1)- k(j+1,1)
if j==5
kShift = circshift(k,m)
m=m-1;
end
end
end

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!