Matlab画两条曲线相交以前的图像?如图

来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/24 08:15:34
Matlab画两条曲线相交以前的图像?如图Matlab画两条曲线相交以前的图像?如图Matlab画两条曲线相交以前的图像?如图先求交点:[x,y]=solve('y=x^2','

Matlab画两条曲线相交以前的图像?如图
Matlab画两条曲线相交以前的图像?如图

Matlab画两条曲线相交以前的图像?如图
先求交点:
[x,y]=solve('y=x^2','y=(x-2)^2')

x = 1
y = 1
fun=@(x)x^2*(x<1)+(x-2)^2*(x>1);
ezplot(fun);