이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
roundl is a MATLAB function that does base-10 logarithmic rounding.
Syntax:
y= roundl(x, mode, n)
The value y is x rounded to a number of the form a*10^n, where n is an integer and a is one of a small number of multipliers.
x, the number to be logarithmically rounded, must be positive.
mode (optional) specifies the rounding direction. If specified, mode must be 'u' (round up), 'd' (round down), or 'n' (round to nearest); 'n' is the default.
n (optional) specifies the number of values per decade and thus determines the allowed multipliers. Allowed values of n are 1-7. The default value for n is 3; n= 5 and n= 7 are not commonly used. The following table shows the set of multipliers for each value of n:
1: 1
2: 1, 3
3: 1, 2, 5
4: 1, 2, 3, 5
5: 1, 2, 3, 5, 7
6: 1, 1.5, 2, 3, 5, 7
7: 1, 1.5, 2, 3, 4, 6, 8
인용 양식
Phillip M. Feldman (2026). logarithmic rounding (https://kr.mathworks.com/matlabcentral/fileexchange/24040-logarithmic-rounding), MATLAB Central File Exchange. 검색 날짜: .
