Simplify expression displayed in command window
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How can r be simplified? r is used further down the program as a number. I just want r to be displayed as a number in the command window. What operator do I have to add in front of r to display it in number form?
r =
1/332306998946228968225951765070086144*35635536596067290180312771580437^(1/2)*332306998946228968225951765070086144^(1/2)
0 Kommentare
Antworten (1)
Sean de Wolski
am 18 Sep. 2013
vpa(r,10) %change 10 to desired number of digits
or
double(r)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!