How to use Matlab to solve equation like Mathcad

8 visualizaciones (últimos 30 días)
Jason Ciou
Jason Ciou el 8 de Jul. de 2022
Respondida: Karim el 8 de Jul. de 2022
Hi Guys,
How to use Matlab to solve equation like Mathcad.
I would like to solve below equation, but I don't know how to solve it in Matlab, could someone give me some suggestions, thanks.
  2 comentarios
KSSV
KSSV el 8 de Jul. de 2022
Read about solve
Jason Ciou
Jason Ciou el 8 de Jul. de 2022
Hi @KSSV
I try to read solve and use that, but Matlab can't solve the equation.

Iniciar sesión para comentar.

Respuesta aceptada

Karim
Karim el 8 de Jul. de 2022
Use the symboic toolbox to determine the equations, see below.
syms fp1 fp2 fz1 fz2 fc boost real
eqn = boost == ( atan(fc/fz1) + atan(fc/fz2) - atan(fc/fp1) - atan(fc/fp2) ) * 180/pi
eqn = 
fp2_eqn = solve(eqn, fp2)
Warning: Solutions are only valid under certain conditions. To include parameters and conditions in the solution, specify the 'ReturnConditions' value as 'true'.
fp2_eqn = 
% evaluate the solution by filling in some parameters
fz1 = 1239;
fp1 = 50000;
fc = 10000;
fz2 = fz1;
boost = 94.26;
fp2 = -fc/(tan(atan(fc/fp1) - atan(fc/fz1)- atan(fc/fz2) + pi*boost/180))
fp2 = 5.7029e+03
% print a string with 17 decimal numbers to compare with mathcad
fp2_s = sprintf('%4.17f',fp2)
fp2_s = '5702.93635357467974245'

Más respuestas (0)

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by