Skip to main content
16-Pearl
September 17, 2014
Solved

use of root() with 3 parameters - how to?

  • September 17, 2014
  • 2 replies
  • 1113 views

to all

i wnat to use the root() optin to solve a "simple" 2nd order equation. The 1st pass works fine but I now would like to set it up so that root() give me a set of x values for a set of given parameters. Please see attahce dmcad sheet

the equaqtion is as follwos

a(A,B,t)x^2 + b(A,B,t)x + c = 0

I can solve it if I set values for say A and t

Thanks

Regards

JXB

Best answer by Werner_E

Turn the call of root into a function with arguments A and t and use that function vectorized. This should do what you are asking for:

1.png

2 replies

Werner_E
Werner_E25-Diamond IAnswer
25-Diamond I
September 17, 2014

Turn the call of root into a function with arguments A and t and use that function vectorized. This should do what you are asking for:

1.png

16-Pearl
September 17, 2014

Thanks. Much appreciated. Learnt something today!