How to use Matlab to solve equation like Mathcad

조회 수: 7 (최근 30일)
Jason Ciou
Jason Ciou 2022년 7월 8일
답변: Karim 2022년 7월 8일
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
KSSV
KSSV 2022년 7월 8일
Read about solve
Jason Ciou
Jason Ciou 2022년 7월 8일
Hi @KSSV
I try to read solve and use that, but Matlab can't solve the equation.

댓글을 달려면 로그인하십시오.

채택된 답변

Karim
Karim 2022년 7월 8일
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'

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by