How to find intersection point between plot (x,aww) and plot (xt,yt)
显示 更早的评论
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);
回答(1 个)
Ameer Hamza
2020-11-24
0 个投票
See this FEX package: https://www.mathworks.com/matlabcentral/fileexchange/22441-curve-intersections
类别
在 帮助中心 和 File Exchange 中查找有关 Noncentral t Distribution 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!