What Does the Symbolic Math Toolbox Mean by 0 < s When s is Complex?

2 ビュー (過去 30 日間)
Paul
Paul 2024 年 2 月 25 日
コメント済み: John D'Errico 2024 年 2 月 25 日
syms s
syms t real
f = int(exp(-s*t),t,-inf,0)
f = 
What does that first condition mean insofar as s is complex?

採用された回答

John D'Errico
John D'Errico 2024 年 2 月 25 日
編集済み: John D'Errico 2024 年 2 月 25 日
Just test it yourself. :) Admittedly, it may not have been obvious to perform this test. But we can use it to learn how MATLAB sees that comparison.
s = sym([0, 1, -1, i, -i, 1+i, 1-i, -1+i, -1-i])
s = 
s > 0
ans = 
As you can see, a comparison with an inequality applies to the real part of a complex number. I do see that one of those cases in your question showed real(s)<0 as a comparison, but that would still be equivalent as far as MATLAB is concerned to s<0.
  2 件のコメント
Paul
Paul 2024 年 2 月 25 日
I think I was thrown off because the first term in the second was written with 0 < real(s), so why wouldn't the first case be written as 0 < real(s)? That's a rhetorical question.
And I've never seen that notation 0 < s -> 0 < real(s). Seems weird to me.
BUT, it is documented: lt (I should have checked that first, though not as clearly as it could be), which then brings into question why that first condition on the second case is written the way it is.
John D'Errico
John D'Errico 2024 年 2 月 25 日
Sometimes the symbolic TB does mysterious things. :)
It is confusing that real(s)<0 and s<0 are in fact the same thing as far as the STB is concerned, yet we see both of those in different paths in the same result in your example. I assume they were generated by different pieces of code, possibly involving different people in the coding.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConversion Between Symbolic and Numeric についてさらに検索

製品


リリース

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by