Question about fractional values.

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 commentaire

Do you have strings or what?
S = '(5/3)' % Like this?

Réponses (1)

Andrei Bobrov
Andrei Bobrov le 21 Sep 2012

0 votes

use Symbolic Math Toolbox
x = sym('5/3');
[N,D] = numden(x);
out = [N,1/D];

1 commentaire

Portgas Ace
Portgas Ace le 21 Sep 2012
solved my problem using [N,D] = rat(x). thanks though :D

Cette question est clôturée.

Tags

Clôturé :

le 20 Août 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by