clc; %清屏 clear; %清除变量 close all; %关闭 syms x; %定义变量,多个变量间用空格分离 f(x) = x^3; %原函数 res = diff(f(x),x,1); %函数的导数 pretty(res); %按照书面格式进行展示 ezplot(f(x)); %绘制原函数曲线 hold on; ezplot(res); %绘制导数的曲线 grid on;%加网格 legend('y=x^3','y=3*x^2');%加图例 title('函数求导数'); %{ df = diff(F,var,n) 表示函数F对变量var求n阶导数 ezplot 默认范围-2π~ 2π %}