如何用matlab解一个二元复杂方程?。

syms x y
>> [x,y]=solve('2*2400*x*sprt(1-4*x^2/(2400^2))/(10^5*pi)=(x^2/2*10^5+35)*(0.01-2*x)','sin(100*pi*y)=2*x/2400')
Error using mupadengine/feval (line 157)
MuPAD error: Error: Cannot differentiate equation. [numeric::fsolve]
Error in solve (line 160)
sol = eng.feval('symobj::solvefull',eqns,vars);
以上提示的错误是什么意思呢?

 Accepted Answer

xewotey
xewotey on 25 Nov 2022

0 votes

syms x y
[x,y]=solve(2*2400*x*sqrt(1-4*x^2/(2400^2))/(10^5*pi)-(x^2/2*10^5+35)*(0.01-2*x),sin(100*pi*y)-2*x/2400)

More Answers (0)

Tags

Asked:

on 25 Nov 2022

Answered:

on 25 Nov 2022

Community Treasure Hunt

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

Start Hunting!