Find the parameter that satisfies the condition
1 次查看(过去 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!