Question about fractional values.
Info
This question is closed. Reopen it to edit or answer.
Show older comments
Is there a way where i can separate a whole number from a fraction for example (5/3), is there a way to make it (5)(1/3)?
1 Comment
Matt Fig
on 21 Sep 2012
Do you have strings or what?
S = '(5/3)' % Like this?
Answers (1)
Andrei Bobrov
on 21 Sep 2012
use Symbolic Math Toolbox
x = sym('5/3');
[N,D] = numden(x);
out = [N,1/D];
1 Comment
Portgas Ace
on 21 Sep 2012
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!