how can I find the intersect point of 1 plot and a yline ?
x = [0 10 20 30 40 50 60 70 80 90];
y = [0 0.0328 0.2521 0.7975 1.7295 3.0213 4.5714 6.2283 7.8191 9.1752];
plot(x,y,’LineWidth’,2);
hold on
yline(5, ‘r’);
xlim([0 90]);
ylim([0 9.1752]);x = [0 10 20 30 40 50 60 70 80 90];
y = [0 0.0328 0.2521 0.7975 1.7295 3.0213 4.5714 6.2283 7.8191 9.1752];
plot(x,y,’LineWidth’,2);
hold on
yline(5, ‘r’);
xlim([0 90]);
ylim([0 9.1752]); x = [0 10 20 30 40 50 60 70 80 90];
y = [0 0.0328 0.2521 0.7975 1.7295 3.0213 4.5714 6.2283 7.8191 9.1752];
plot(x,y,’LineWidth’,2);
hold on
yline(5, ‘r’);
xlim([0 90]);
ylim([0 9.1752]); matlab, plot, plotting MATLAB Answers — New Questions