How to find intersection point between plot (x,aww) and plot (xt,yt)

7 visualizaciones (últimos 30 días)
CHRISTOPHER S
CHRISTOPHER S el 24 de Nov. de 2020
Comentada: CHRISTOPHER S el 24 de Nov. de 2020
x=[1:100];
x=x(ones (1,100),:);
aww=zeros(100);
for i=1:100;
j=1:100;
y=linspace(1,10,100);
aww(i,j)=y(1,i);
end
plot(x,aww);
xlim([-10 110]);
ylim([-1 15]);
hold on
xt=20:80;
yt=ones(1, length(xt))*5;
plot (xt,yt);

Respuestas (1)

Ameer Hamza
Ameer Hamza el 24 de Nov. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by