可以使用fplot函数,其功能是Plot function
例如:绘制x^2+3x+6的图像,代码如下
figure fplot(@(x) x.^2+3*x+6)
扩展:fplot的第二个参数可以用来设置函数的定义域
figurefplot(@(x) x.^2+3*x+6,[-5,10])