Find the parameter that satisfies the condition
4 ビュー (過去 30 日間)
古いコメントを表示
Hi everyone, let me explain my problem better.
For example
syms j w lambda
a = ((1 - 3*j*w)*(1 + 5*lambda*j*w))/((14 + j*w)*(2 + lambda*j*w)^3)
Q = subs(a,j,sqrt(-1))
I = subs((1 + 2*j*w)/(0.5 + j*w),j,sqrt(-1))
I need to find the real lambda value that satisfies the following condition:
abs(Q)<abs(I)
I tried with a for loop incrementing the value of lambda from time to time, but I got the following error:
'Conversion to logical from sym is not possible.'
Is there a more efficient solution that can solve my problem?
2 件のコメント
回答 (1 件)
Bruno Luong
2023 年 9 月 10 日
編集済み: Bruno Luong
2023 年 9 月 10 日
There is not solution
where w goes to i/2 (the rhs goes to inf) or -i/3 (the lhs goes to 0), for any lambda the inequality won't be satisfied.
2 件のコメント
Bruno Luong
2023 年 9 月 10 日
編集済み: Bruno Luong
2023 年 9 月 10 日
Well this question shows what you expect to solve does not have solution.
What you compare is absolute value of two polynomials (considered as variable in w) and coeffs depend on lambda:
|P(w)| <= Q(w)|
The fundamental theorem of algebra tells Q(w) always have a root (w) somewhere in the complex plane. So in general you cannot find a solution lambda that do what you want since the inequality is false at the root of Q.
Sorry there is no symbolic trick and the symbolic engine cannot (yet?) does this kind of (simple) math inference.
参考
カテゴリ
Help Center および File Exchange で Number Theory についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!