跳至内容

Mathematica/BasicPlotting

来自 Wikibook,开放世界的开放教科书

要生成 f(x) 对于 x 的简单 2D 绘制,请使用“Plot”命令。简单的绘图结构编写为“Plot[f(x),{x,lower_bound,upper_bound}]”。

示例

Plot[x^2+4,{x,-5,5}];

两个函数可以使用“Plot[{f(x),g(x)},{x,lower_bound,upper_bound}]”形式一起绘图。

示例

Plot[{x^2 + 4, 10 Sin[x]}, {x, -5, 5}];
华夏公益教科书