How to find out particular value of t (j) at which y(j) is equal to some value lets say 4 (without looking graph) ? Thanks.

1 vue (au cours des 30 derniers jours)
N=100;
dt=0.05;
k=2;
t=zeros(N,1);
y=zeros(N,1);
y(1)=2;t(1)=0;
for j=1:N-1
t(j+1)=t(j)+dt;
y(j+1)=y(j)+dt*(2+k);
end
plot(t,y)

Réponses (1)

Star Strider
Star Strider le 27 Mar 2018
Try this:
yi = 4
ti = interp1(y, t, yi)

Community Treasure Hunt

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

Start Hunting!

Translated by