How do you remove certain text?

1 view (last 30 days)
Brian
Brian on 6 Sep 2012
I'm currently writing a function and to do it correctly I have to remove everything to the left of a decimal. For instance, if i do x = 5/3 and get 1.6666667 I just would like to be able to get rid if 1 and get .66666667.

Accepted Answer

per isakson
per isakson on 6 Sep 2012
Try
doc rem
and
rem( 5/3, 1 )
  1 Comment
Brian
Brian on 6 Sep 2012
Thank you very much. That worked great.

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!