derivative in Matlab-Symbolic Toolbox

Hello,
How can I get such a derivative in Matlab-Symbolic Toolbox ?
Well as the derived member x '.
y = sin(x)
y´=x´*cos(x)
Thank you for any help.

回答 (2 件)

Wayne King
Wayne King 2013 年 2 月 18 日
編集済み: Wayne King 2013 年 2 月 18 日

0 投票

syms x
y = sin(2*pi*x);
diff(y)
% returns
% 2*pi*cos(2*pi*x)
In your example, the derivative of sin(x) with respect to x is not
x*cos(x), it's just cos(x)
Rasto
Rasto 2013 年 2 月 18 日

0 投票

Thank you very much.
And there is another program that displays the derived member?
I ask because I would like to get the following matrix.
see

カテゴリ

ヘルプ センター および File ExchangeSymbolic Math Toolbox についてさらに検索

質問済み:

2013 年 2 月 18 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by