How to simplify unit fractions?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Johannes Kalliauer
il 27 Lug 2020
Risposto: madhan ravi
il 27 Lug 2020
u1 = symunit;
u2 = symunit;
x=2*u1.meter;
y=5*u2.millimeter;
frac=x/y
double(frac)
Results in
frac =
(2/5)*([m]/[mm])
Error using symengine
Unable to convert expression into double array.
Error in sym/double (line 700)
Xstr = mupadmex('symobj::double', S.s, 0);
But should result in
frac =
400
0 Commenti
Risposta accettata
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!