vote up 0 vote down star
1

I have quadratic equation 1/x = 1/(a-x) + 1/(3*a -x)

I want to solve it in matlab:

solve('1/x=1/(a-x)+1/(3*a-x)', 'x')
ans =
 (4/3+1/3*7^(1/2))*a
 (4/3-1/3*7^(1/2))*a

Is there any way to solve equation with float coefficient? Like

ans = 
  2.215250437021530*a
  0.451416229645136*a
flag

2 Answers

vote up 0 vote down check

Apparently, double(ans) should convert it for you.

link|flag
But I get only error message: >> double(ans) ??? Error using ==> sym.double at 25 DOUBLE cannot convert the input expression into a double array. If the input expression contains a symbolic variable, use the VPA function instead. – iyo May 19 at 5:15
2  
What happens if you use the function VPA(ans)? – Ian Hopkinson May 19 at 5:24
vpa(ans) is what I need. Thanks a lot for your answer – iyo May 19 at 6:26
vote up 0 vote down

I used eval() to get a double result from a symbolic expression

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.