matlab 画函数图像
画函数图像%% 显示函数图像f = inline( 'x^2 - x - 1'); % 定义函数ezplot(f, -4, 4); %显示函数图形hold on;%% 第二种形式f = inline('1/x - (x - 1)'); % 写出函数ezplot(f, -2, 2);zeor1 = fzero(f, 1); % 找第一个函数零点,在x=1附近zero2 = fzero(f, -1); % 找第二个函数零点,在x=-1附近hold on;plot(zeor1,