round2
Everyone knows about the ROUND function for converting floating point values to their nearest whole number or integer value, but have you ever wanted to round off values to something other than whole numbers? This simple utility function does just that.
Example 1: round PI to 2 decimal places
>> round2(pi,0.01)
ans =
3.14
Example 2: round PI to 4 decimal places
>> round2(pi,1e-4)
ans =
3.1416
Example 3: round PI to 8-bit fraction
>> round2(pi,2^-8)
ans =
3.1406
Examples 4-6: round PI to other multiples
>> round2(pi,0.05)
ans =
3.15
>> round2(pi,2)
ans =
4
>> round2(pi,5)
ans =
5
Citar como
Robert Bemis (2025). round2 (https://www.mathworks.com/matlabcentral/fileexchange/4261-round2), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
Etiquetas
Agradecimientos
Inspiración para: Round to Specified Digits Place, Round to a Specified Number of Significant Digits, Graph Digitzer, Round, Ceil and Floor Matlab-datenumbers, roundfrac, ROUND2DP
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.