一、什么是factors?类似于function,将一个自变量空间投影到新空间。这个自变量空间叫做scope。二、例子如概率论中的联合分布,就是将不同变量值的组合映射到一个概率,概率和为1.三、几种操作(factor operation)的介绍1、乘积2、边缘化3、缩减四、总结(为何引入factor...
分类:
其他好文 时间:
2015-03-03 21:54:44
阅读次数:
129
素数判断:一、根据素数定义,该数除了1和它本身以外不再有其他的因数。详见代码。1 int prime()2 {3 for (int i=2; i*i 2 #include 3 #include 4 5 using namespace std; 6 7 int hash[20050];...
分类:
其他好文 时间:
2015-02-28 18:08:32
阅读次数:
206
1.获取 acquire
2.取样 sample
3.峰值检测 peak detect
4.方波和脉冲 square waves and pulse
5.耦合 coupling
6.粗调/细调 coarse/fine
7.探头衰减系数 probe attenuation factor
8.反相 invert
9.光轴(最大发光强度中心) optical ...
分类:
其他好文 时间:
2015-02-28 10:16:37
阅读次数:
178
One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysis in which the core regions ...
分类:
其他好文 时间:
2015-02-25 11:31:55
阅读次数:
147
回溯法:避免无用判断,强化回溯代码的实现过程题目的大意就是以字典序为准,排列字符串,但要保证一个字符串中不包含相邻的重复子串。Problem DescriptionFor example, the sequence ABACBCBAD is easy, since it contains an ad...
分类:
其他好文 时间:
2015-02-21 18:47:37
阅读次数:
201
Krypton FactorTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 181Accepted Submission(s): 60Problem...
分类:
其他好文 时间:
2015-02-13 22:24:50
阅读次数:
240
跪了一下午数论
整理了一下数论模板
这是个史前巨坑,有空慢慢填
#include
#include
#include
#include
#include
#define MAXN 1000000
using namespace std;
bool not_prime[MAXN];
int prime_number[MAXN];
int nu;
int factor[MAXN];//顺手记录一...
分类:
其他好文 时间:
2015-02-12 21:29:22
阅读次数:
178
A Bayes factor (BF) is a statistical index that quantifies the evidence for a hypothesis, compared to an alternative hypothesis (for introductions to ...
分类:
其他好文 时间:
2015-02-01 21:49:52
阅读次数:
501
题目大意:给你N个数,找出这N个数拥有最大素因子的那个数。
思路:筛法求素数的方法求出所有20000范围内所有数最大的素因子,然后遍历N个数,
找出最大的即可。...
分类:
其他好文 时间:
2015-02-01 09:35:10
阅读次数:
247
题目: Largest prime factorTime Limit: 5000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 4868 Accepted Submission(s): 1452 Problem DescriptionEverybody knows ...
分类:
其他好文 时间:
2015-01-30 21:08:12
阅读次数:
205