0
我有這些函數,並希望將它們放在一個窗口中(使用繪圖函數),以便生成複合和平滑函數。將函數間隔放在一起
x1 = linspace(0, 0.5, 1000);
y1 = coordinates(1)*x1.^3 + coordinates(2)*x1.^2 + coordinates(3)*x1 + coordinates(4);
x2 = linspace(0.5, 1, 1000);
y2 = coordinates(5)*x2.^3 + coordinates(6)*x2.^2 + coordinates(7)*x2 + coordinates(8);
x3 = linspace(1, 6, 1000);
y3 = coordinates(9)*x3.^3 + coordinates(10)*x3.^2 + coordinates(11)*x3 + coordinates(12);
x4 = linspace(6, 7, 1000);
y4 = coordinates(13)*x4.^3 + coordinates(14)*x4.^2 + coordinates(15)*x4 + coordinates(16);
x5 = linspace(7, 9 ,1000);
y5 = coordinates(17)*x5.^3 + coordinates(18)*x5.^2 + coordinates(19)*x5 + coordinates(20);
正如你所看到的,我有一些值保存在座標中。你不需要這個值。我只想知道如何在一個窗口中將繪圖函數的零件放在一起。像下面的圖片(例如與GeoGebra)在我想要把單一功能於一身的INTERVALL在一起並接收一個功能:
您可以使用[劇情](http://uk.mathworks.com/help/matlab/ref/plot.html#bt2458m) –
我知道,但我不知道究竟怎麼了... – zer0kai