How to access the values of sym?

3 ビュー (過去 30 日間)
Kalasagarreddi Kottakota
Kalasagarreddi Kottakota 2023 年 1 月 16 日
回答済み: Paul 2023 年 1 月 16 日
I am trying to solve an inequlaity using feval and the function return the limits in variable sym. May I know how to access the limits of values in sym?
syms b
a = 1;
feval(symengine, 'solve', (1-sqrt(5))*a^2 < b < (1+sqrt(5))*a^2)

回答 (1 件)

Paul
Paul 2023 年 1 月 16 日
Not sure why feval is used. Just using solve with ReturnConditions solves for the range of b that satisfies both inequalities.
syms b
a = 1;
eq1 = (1-sqrt(5))*a^2 < b;
eq2 = b < (1+sqrt(5))*a^2;
sol = solve([eq1;eq2],b,'ReturnConditions',true)
sol = struct with fields:
b: x parameters: x conditions: -347922205179541/281474976710656 < x & x < 910872158600853/281474976710656

カテゴリ

Help Center および File ExchangeFunction Creation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by