My previous question was closed - fair enough - but I am not a student doing homework but 69 years old - and in the past you helped me to solve 7 polynomial

3 次查看(过去 30 天)
s*x+i = (x^2*v^2/w^2+v^2)^(1/2) wanted that solved for x

采纳的回答

Walter Roberson
Walter Roberson 2025-1-18
syms s x v w
eqn = s*x+1i == (x^2*v^2/w^2 + v^2)^(1/2)
eqn = 
sol = solve(eqn, x)
Warning: Solutions are only valid under certain conditions. To include parameters and conditions in the solution, specify the 'ReturnConditions' value as 'true'.
sol = 
sol1 = solve(eqn, x, 'returnconditions', true)
sol1 = struct with fields:
x: [2x1 sym] parameters: [1x0 sym] conditions: [2x1 sym]
sol1.x
ans = 
sol1.conditions
ans = 

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Linear Algebra 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by