Represent the result of matrices manipulation as rational numbers
7 views (last 30 days)
Show older comments
Fatma Alnabrisi
on 6 Dec 2019
Edited: Fatma Alnabrisi
on 6 Dec 2019
Hi everyone
I need to represent my resultant matrix with rational number rather than decimal point.
for example I have matrix A = [ 1/2 1/3 ; 4 5/6]
B = [ 2 1/4 ; 4 1 ]
C = A+B
how to get C as [ 5/2 7/12 ; 8 11/6]
0 Comments
Accepted Answer
JESUS DAVID ARIZA ROYETH
on 6 Dec 2019
format rat
A = [ 1/2 1/3 ; 4 5/6]
B = [ 2 1/4 ; 4 1 ]
C = A+B
0 Comments
More Answers (0)
See Also
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!