如何在Mathematica中做两条曲线,纵坐标刻度不同

2024-12-14 18:01:42
推荐回答(2个)
回答1:

Plot[{Sin[x], Cos[x]}, {x, -Pi, Pi},
Frame -> {{True, True}, {True, False}},
FrameTicks -> {{Automatic, {{-0.5, 5}, {0, 10}, {0.5,
15}}}, {Automatic, None}},
FrameLabel -> {{"Left", "Right"}, {None, None}}]

笨办法,就是画出两个图形,手动给定y轴范围。

回答2:

polarbear5208的答案好像是:这个方法画出的图像右侧的纵坐标只是一个摆设,两个图形都是按照左侧的纵坐标显示的。