trying to get numerical answer for a variable equation
이전 댓글 표시
Zarc=([(Z*(Zarc*(tan(ThetaR1))))/((8.2+((x-1)*0.05))-(Zarc(tan(ThetaR1))))])
This is my equation and I am trying to use code to find out what the variable is for Zarc. I am tyring to intergrate it but having multiple errors come up. Needs to be in the form of a loop i know.
Thanks,
Amanda
댓글 수: 2
John D'Errico
2016년 11월 9일
Please don't add an answer for every comment you make. Add them as comments.
Amanda Kincketootle
2016년 11월 9일
답변 (1개)
Walter Roberson
2016년 11월 9일
syms Zarc Z ThetaR1 x
solve(Zarc==(((Z*(Zarc*(tan(ThetaR1))))/((8.2+((x-1)*0.05))-(Zarc*(tan(ThetaR1)))))),Zarc)
댓글 수: 2
John D'Errico
2016년 11월 9일
Amanda said:
"I don't have the symbolic math toolbox"
Walter Roberson
2016년 11월 10일
편집: Walter Roberson
2016년 11월 10일
There are two solutions for Zarc:
- 0
- (x - 20*Z*tan(ThetaR1) + 163)/(20*tan(ThetaR1))
You could also use something like fzero:
fzero( @(Zarc) (((Z*(Zarc*(tan(ThetaR1))))/((8.2+((x-1)*0.05))-(Zarc*(tan(ThetaR1)))))) - Zarc, SomeInitialGuess)
카테고리
도움말 센터 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!