Res=input ('Enter the resistance values in ohm,R1 to Rn,values must be positive and real > ');
for i=1:1:n
if Res(1,i)<0 | imag(Res(1,i))~=0
Res=input ('Enter the resistance values in ohm,R1 to Rn,values must be positive and real > ');
end
end
how to make this code repeat from the begining from the bigginig if statement is true

1 个评论

how to make this code repeat from the begining if, Res(1,i)<0 | imag(Res(1,i))~=0 statement is true

请先登录,再进行评论。

 采纳的回答

n = 4 ;
for i=1:1:n
Res(i)=input ('Enter the resistance values in ohm,R1 to Rn,values must be positive and real > ');
while Res(i)<0
Res(i)=input ('Enter the resistance values in ohm,R1 to Rn,values must be positive and real > ');
end
end

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Dynamic System Models 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by