フィルターのクリア

Extract exponent of term in symbolic expression?

8 ビュー (過去 30 日間)
Adam Darcie
Adam Darcie 2020 年 4 月 23 日
コメント済み: Adam Darcie 2020 年 4 月 26 日
Let's say I have some symbolic expression expression:
syms a b c d
expression=a^2*b^4*c^3*d
I want to extract the exponent of a given symbol. For example, if I ask for the exponent of a, it should give 2. I can't seem to find any solutions that work in the current version of Matlab. There must be some simple way of doing this in 2020 right?
Thanks in advance!

回答 (1 件)

Christopher Creutzig
Christopher Creutzig 2020 年 4 月 24 日
I believe you are looking for polynomialDegree:
>> polynomialDegree(expression,a)
ans =
2
  1 件のコメント
Adam Darcie
Adam Darcie 2020 年 4 月 26 日
I knew something like this had to exist but I couldn't find it. Thanks!

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

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by