Help me get a numeric answer please. I have a symbolic answer for x but just want a number. Conversion with double(x) doesn't work???
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
The code I type is:
evalin(symengine,... ['numeric::solve(tan(pi*x/180)'... '+tan(((4000-2672)/2672)*pi*x/180)==626/(1300))'])
I get the answer:
ans =
[x == 17.971555160137556933421078470028]
I type:
double(x)
I get the answer:
Error in MuPAD command: DOUBLE cannot convert the input expression into a double array.
If the input expression contains a symbolic variable, use the VPA function instead.
Error in sym/double (line 710) Xstr = mupadmex('symobj::double', S.s, 0);
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 6 de Sept. de 2013
a=evalin(symengine,...
['numeric::solve(tan(pi*x/180)'...
'+tan(((4000-2672)/2672)*pi*x/180)==626/(1300))'])
out=double(solve(a))
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!