sym(1/3) bug?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Andrew Dabrowski
el 13 de Feb. de 2021
Comentada: Adam Danz
el 13 de Feb. de 2021
On https://www.mathworks.com/help/symbolic/create-symbolic-numbers-variables-and-expressions.html I see
But when I try running this I get
Is this a bug or am I doing something wrong?
0 comentarios
Respuesta aceptada
Adam Danz
el 13 de Feb. de 2021
Editada: Adam Danz
el 13 de Feb. de 2021
Check your symbolic preferences.
sympref
If the FloatingPointOutput if true change it to false
sympref('FloatingPointOutput',true);
sym(1/3)
sympref('FloatingPointOutput',false);
sym(1/3)
1 comentario
Adam Danz
el 13 de Feb. de 2021
Andrew Dabrowski's answer moved here as comment
Ah thanks, that was it!
Más respuestas (0)
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!