round
语法
round(X, [precision])
参数
X 可以是标量、向量或矩阵。
precision 是 0 到 10 的整数,表示保留小数点后几位。默认值是 0。
详情
例子
round 2.1;
//output: 2
round 2.9;
//output: 3
round -2.1;
//output: -2
round(2.154,2);
//output: 2.15
round(2.156,2);
//output: 2.16
ceil 2.1;
//output: 3
ceil 2.9;
//output: 3
ceil -2.1;
//output: -2
floor 2.1;
//output: 2
floor 2.9;
//output: 2
floor -2.1;
//output: -3
m = 1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10$2:5;
m;
返回:
#0 | #1 | #2 | #3 | #4 |
---|---|---|---|---|
1.1 | 3.3 | 5.5 | 7.7 | 9.9 |
2.2 | 4.4 | 6.6 | 8.8 | 10 |
round m;
返回:
#0 | #1 | #2 | #3 | #4 |
---|---|---|---|---|
1 | 3 | 6 | 8 | 10 |
2 | 4 | 7 | 9 | 10 |