绘制分段连续函数

时间:2018-11-30 12:09:06

标签: matlab plot

我想使用以下代码绘制一个不连续的分段函数。但是,输出始终显示为连续函数,因为MATLAB将这些子函数之间的间隙连接起来。

::ng-deep h1{
   background-color: #000;
}

如何以一种不太复杂的方式解决此问题?

PS。我正在使用MATLAB 2013a,在该版本中似乎不存在函数piecewise

1 个答案:

答案 0 :(得分:9)

在函数之间添加nan,这将使它们脱离连接:

i1 = -2:0;
i2 = 0:pi/2;
i3 = pi/2:pi;
f1 = sinh(i1)+2;
f2 = sin(i2)-2;
f3= 2*i3.^2-2*pi*i3+3;
plot([i1 nan i2 nan i3],[f1,nan,f2,nan,f3]);

enter image description here

产生相同图形的另一个选项是使用hold on分别绘制所有三个图形:

figure;
hold on
plot(i1,f1,'b');
plot(i2,f2,'b');
plot(i3,f3,'b');

或使用plot(X,Y,X1,Y1,...,Xn,Yn语法:

figure;
plot(i1,f1,'b',i2,f2,'b',i3,f3,'b')

请注意,对于后两者,必须指定线条样式,以防止MATLAB使它们成为单独的颜色,因此'b'