上述非线性方程组如何准确快速求x的值,其他参数已知。

 採用された回答

0 投票

试试
function [y] = find_y(k,rou,beta)
syms x real
myfun=@(x)rou.^2/(2*x.^2)*(exp(-2*x)-1+2*x)+4*rou*(1-rou)/x.^2*(exp(-x)-1+x)-k.^2/beta;
y = vpasolve( myfun(x)==0 );
end

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeSymbolic Math Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!