一种复制绘图并在现有曲线旁边绘图的方法

时间:2014-04-17 07:38:30

标签: matlab

如果我在轴上绘制曲线,有一种方法可以复制曲线并在旁边绘图而不运行该函数。

即。我有一个代码来绘制从-1到0的函数,我不希望函数从0到1正确,我只是想复制它旁边的曲线。

很抱歉模糊的问题,但我在这里不知所措

1 个答案:

答案 0 :(得分:3)

使用函数sin(x)作为示例,您可以执行此操作

x_min = -1;
x_max = 0;
x = x_min:0.1:x_max;
y = sin(x);

hold on
plot(x, y, 'LineWidth', 1.2)
plot(x + x_max - x_min, y, 'LineWidth', 1.2)
plot([x_max x_max], [sin(x_min) sin(x_max)], 'k--')
axis equal

获取以下内容

enter image description here