performing iterations until equation becomes zero
5 次查看(过去 30 天)
显示 更早的评论
i have to perform the iterations for equations,here i gave for the values N starting 0.1 upto 5 .i have to perform iterations until the sold equation becomes to zero.I am not getting any errors,but i am getting wrong values.can anyone help me ??
for i=0.1:0.1:5
i=N;
No=(Ns+R*N(i))/(1+R);
Nstar=N(i)/(1000*Kn);
jstar=(((sqrt((Lstar^1.76)+(5.2*(Nstar(i)-Nstar_min)))-(Lstar^0.88))/2.6)^1.136);
J=(jstar*(sqrt(Kn*k*Xf*Df)));
X =((bt*Qo*(1+R)*Xo)+(Y*1000*a*V*J*bs))/(bt*((Qo*(1+R))-((V*Y*k*N(i))/((Kn*1000)+N(i)))+V*kd));
sold=Qo*(1+R)*(No-N(i))-V*((a*J*1000)+((X*k*N(i))/((Kn*1000)+N(i))))
end
0 个评论
采纳的回答
Alan Stevens
2021-2-6
Shouldn;t your first few lines here be:
N = 0.1:0.1:5;
for i=1:numel(N)
No=(Ns+R*N(i))/(1+R);
...etc
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!