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 Comments

Please don't add an answer for every comment you make. Add them as comments.

Sign in to comment.

Answers (1)

syms Zarc Z ThetaR1 x
solve(Zarc==(((Z*(Zarc*(tan(ThetaR1))))/((8.2+((x-1)*0.05))-(Zarc*(tan(ThetaR1)))))),Zarc)

2 Comments

Amanda said:
"I don't have the symbolic math toolbox"
There are two solutions for Zarc:
  1. 0
  2. (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)

Sign in to comment.

Categories

Tags

No tags entered yet.

Asked:

on 9 Nov 2016

Edited:

on 10 Nov 2016

Community Treasure Hunt

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

Start Hunting!