Mathematica/BasicPlotting
外观
要生成 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}];