problem in while loop?
Ältere Kommentare anzeigen
I wrote a loop code in matlab the problem is the answer I got is for the last element of the loop V =[0.0312 + 0.2251i 0.0312 - 0.2251i -0.4103 -0.0103 -0.6718 -0.6718 0.7873 0.1565 0.1714 + 0.1472i 0.1714 - 0.1472i -0.2127 -0.0645 -0.5006 + 0.4421i -0.5006 - 0.4421i 0.4082 0.9855 ]
j=1; [m n]=size(V); b=zeros(n,n);
while (j <= n)
if isreal(V(:,n))==0
b(:,n)=real(V(:,n))
b(:,n+1)=imag(V(:,n))
j=j+1
else
b(:,n)=V(:,n)
end
j=j+1
end
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!