matlab中round函数具体用法是啥?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matlab中round函数具体用法是啥?相关的知识,希望对你有一定的参考价值。
参考技术Around函数
函数功能:四舍五入取整。
使用方法:B = round(A)
对数组A中每个元素朝最近的方向取整数部分,并返回与A同维的整数数组B,对于一个复数参量A,则分别对其实部和虚数朝最近的方向取整数部分,并返回一复数数据B。
例子:
ceil(x)返回不小于x的最小整数值(然后转换为double型)。
floor(x)返回不大于x的最大整数值。
round(x)返回x的四舍五入整数值。
#include <stdio.h>
#include <math.h>
int main(int argc, const char *argv[])
float num = 1.4999;
printf("ceil(%f) is %f\\n", num, ceil(num));
printf("floor(%f) is %f\\n", num, floor(num));
printf("round(%f) is %f\\n", num, round(num));
return 0;
编译:$cc test.c -lm
执行:$./a.out
ceil(1.499900) is 2.000000
floor(1.499900) is 1.000000
round(1.499900) is 1.000000
Matlab中round()
应用举例:
a = [-1.9, -0.2, 3.4, 5.6, 7.0, 2.4+3.6i]
a =
Columns 1 through 4
-1.9000 -0.2000 3.4000 5.6000
Columns 5 through 6
7.0000 2.4000 + 3.6000i
round(a)
ans =
Columns 1 through 4
-2.0000 0 3.0000 6.0000
Columns 5 through 6
7.0000 2.0000 + 4.0000i
matlab中hist函数的用法是啥?
参考技术Ahistogram是一个在图像上应用广泛的一个统计工具,bag-of-word,spatial pymarid matching等等都是基于histogram的。那么如何去做到有效的统计,而不去自己写很长很慢的循环完成这项工作呢?matlab提供了一个非常便利的函数:hist
下面将得到hist的一些函数用法:
设数据为10000个正态分布:y = randn(10000,1);区间从-4到4:x = -4:0.1:4;
1.n=hist(Y);
默认十个等间隔区间,并返回每个范围内的Y的元素个数作为一行向量,
2.n=hist(Y,X);
X是一个事先给定的区间划分,统计Y在X这个区间划分下的个数,
3.n=hist(Y,nbins);
nbins是间隔数,也就是说我们应该统计多少个间隔,这里设nbins=20,
4.[n,xout]=hist(...);
返回的参数多了很多,n是每一个区间的个数,xout是区间的中心位置
以上是关于matlab中round函数具体用法是啥?的主要内容,如果未能解决你的问题,请参考以下文章