How to do manual operation of cross multiplication or substitution?

1 回表示 (過去 30 日間)
Muhammad Usman
Muhammad Usman 2021 年 12 月 12 日
コメント済み: Chunru 2021 年 12 月 14 日
If
syms A B x
y = A*x^2 + B*x;
dy = diff(y)
d2y = diff(dy)
then how to get where d2y is the second derivation; using subs or any other command in MATLAB

回答 (1 件)

Chunru
Chunru 2021 年 12 月 12 日
Is this what you want?
syms A B x z
y = A*x^2 + B*x;
dy = diff(y)
dy = 
d2y = diff(dy)
d2y = 
z = d2y/x^2
z = 
  4 件のコメント
Muhammad Usman
Muhammad Usman 2021 年 12 月 13 日
Means using any built-in command like subs or eval
Chunru
Chunru 2021 年 12 月 14 日
subs and eval are for different purposes (not in your questions)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by