Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 MATLAB 中有一条 3D 曲线,现在我想在另一个图中绘制该曲线的导数? 例如,对于y = x 2 ,对x的导数是y = 2 x。
我怎样才能做到这一点 ?
我不明白“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]);