Borrar filtros
Borrar filtros

How to solve two complex equations by one another?

3 visualizaciones (últimos 30 días)
Julia de Lange
Julia de Lange el 26 de Jul. de 2018
Comentada: Julia de Lange el 27 de Jul. de 2018
I'm trying to solve two complex equations by one another, to determine a scaling factor "m". Basically I want to define a relationship between the two equations, in terms of one single number. This is what I have so far, however it keeps returning Empty sym. Can anyone advise? Thank you!
sym x
m = (88140000/x^(39/50) + 42590)/(12700000000000000/x^(103/25) + 575700)
solve(m,x)
end
  3 comentarios
Julia de Lange
Julia de Lange el 26 de Jul. de 2018
What is your question?
Ben Frankel
Ben Frankel el 26 de Jul. de 2018
I don't see any equations. What exactly are you expecting MATLAB to do from that sequence of commands?

Iniciar sesión para comentar.

Respuesta aceptada

Ajey Pandey
Ajey Pandey el 26 de Jul. de 2018
I think you're calling m incorrectly. To set an equation, you need an == AND an =. The former defines the equation, the latter gives your equation a variable name.
Try this:
x = sym('x')
eqn = m == (88140000/x^(39/50) + 42590)/(12700000000000000/x^(103/25) + 575700)
result = solve(eqn,x)
I'm not sure if this will return the answer you want, but it'll return a symbolic expression.
  1 comentario
Julia de Lange
Julia de Lange el 27 de Jul. de 2018
Thank you for your response! I'm looking for a numerical value for m, but don't think its possible.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by