最新 最热

K-means中K值的选取

以下博文转自:https://blog.csdn.net/qq_15738501/article/details/79036255  感谢

2018-09-04
1

无偏估计

无偏估计:估计量的均值等于真实值,即具体每一次估计值可能大于真实值,也可能小于真实值,而不能总是大于或小于真实值(这就产生了系统误差)。...

sum
2018-08-10
1

2016 Sum Up

??????????????????????????????????????

sum
2018-08-02
1

LeetCode 118 Pascal's Triangle

Given a non-negative integer numRows, generate the first numRows of Pascal's triangle.

2018-07-24
1

贝叶斯决策理论(数学部分)

概率质量函数(Probability Mass Function)是针对离散值而言的,通常用大写字母P表示。假设某个事

2018-07-08
1

leetcode-724-Find Pivot Index

题目描述:Given an array of integers nums, write a method that returns the "pivot" index of this array.We define the pivot index as the index where the sum of the ...

2018-07-05
1

一道编程题: 在1~n之间选择若干个数,使其和为m

这是一道很明显的动态规划的题目。递推公式为用sum(n, m)表示所有可能的1~n之间存在的和为m的组合那么 sum(n,m) = sum(n-1, m) | sum(n-1, m-n)直接上代码void FindCombine(std::list<int> la, int n,int m){ if....

2018-07-04
1

计算机等级考试二级MsOffice之Excel函数学习

注:Excel中函数不区分大小写绝对值函数:ABS(数值)主要用来求一个数值的绝对值向下取整函数:INT(数值)如INT(3.7)输出值为3INT(-3.7)输出值为-4四舍五入函数:...

2018-06-28
1

我们来做瀑布图

瀑布图能够在反映数据在不同时期或受不同因素影响的程度及结果,还可以直观的反映出数据的增减变化,在工作表中非常有实用价值。图如其名,瀑布图是指通过巧妙的设置,使图表中数据点的排列形状看似瀑布悬空。这种...

2018-06-20
1

Excel公式大全,高手进阶必备

第一部分:常用函数和公式查找重复内容公式:=IF(COUNTIF(A:A,A2)>1,"重复","")。用出生年月来计算年龄公式:=TRUNC((DAYS360(H6,"2009/8/30",FALSE))/360,0)。从输入的18位身份证号的出生年月计算公式:=CONCATENATE(MID(E2...

2018-06-20
1