绘制曲线的导数

时间:2012-07-01 16:48:58

标签: matlab matlab-figure matlab-guide

我在MATLAB中有一条3D曲线,现在我想在另一张图中绘制该曲线的导数?
例如,对于 y = x 2 ,导数为w.r.t. x y = 2 x

我该怎么做?

1 个答案:

答案 0 :(得分:4)

我不理解'3D'部分。为什么y = x ^ 2是一条3D曲线?

但是如果你想在同一个地块上绘制y = x ^ 2及其导数,请使用ezplot

clear all; close all;
syms x 
y=x^2;
h=ezplot(y,[-6,6]);
set(h, 'Color', 'r'); 
hold on;
ezplot(diff(y,x),[-6,6]);

enter image description here