Matlab says continue entering statements. I don't know what's wrong.
23 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
MatlabGirl
il 27 Mar 2014
Commentato: Sojeong PAK
il 6 Mag 2024
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.
0 Commenti
Risposta accettata
Chandrasekhar
il 27 Mar 2014
Modificato: Chandrasekhar
il 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
2 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!