how to write a program to round numbers

1 view (last 30 days)
farid khalafi
farid khalafi on 23 Jan 2019
Edited: Jan on 23 Jan 2019
Hi
how to write a proggram to round numbers whitout a prepared command in matlab like (round)
  2 Comments
farid khalafi
farid khalafi on 23 Jan 2019
I want to write rounding program (in any way)
I want to know ... how round command works?

Sign in to comment.

Answers (1)

Jan
Jan on 23 Jan 2019
Edited: Jan on 23 Jan 2019
Rounding is the same as adding 0.5 and cropping the fractional part of the number.
For negative numbers you have to subtract 0.5.
To remove the fractional part, floor, ceil, fix and rem(x,1) can help.

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!