代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/158297/11627080
m primitiveroot.m
function g = primitiveroot(n);
% This function finds a primitive root for n
% Handle Trivial case
g=0;
if (n==2),
g=1;
else
phi=eulerphi(n);
f=factor(phi);
fln=length(f);
y=2;
while
www.eeworm.com/read/258201/11877111
txt 34.txt
1: Cancer Res. 2006 Feb 1;66(3):1354-62.
Fibroblast growth factor 9 has oncogenic activity and is a downstream target of
Wnt signaling in ovarian endometrioid adenocarcinomas.
Hendrix ND, Wu R,
www.eeworm.com/read/338523/12298789
m ga_plot.m
function [para,best_pi]=GA_plot(generation_n, upper, ...
average, lower, BEST_popu)
global MIN_offset MUL_factor true_para
%========================================================
% GA_plot.m
www.eeworm.com/read/338523/12301214
asv ga_plot.asv
function [para,best_pi]=GA_plot(generation_n, upper, ...
average, lower, BEST_popu)
global MIN_offset MUL_factor true_para
%========================================================
% GA_plot.m
www.eeworm.com/read/131520/14142464
m afdxminq.m
function [amax,fmax] = afdxminq(n, Fp, Fs, Kp, Ks)
% afdxminq.m AFD minQ selectivity factor
%
% 2:39 16/2/99
%
% Authors: Dejan V. Tosic, Miroslav D. Lutovac, 1999.02.08
%
www.eeworm.com/read/214111/15112991
cpp statistfire.cpp
#include
/**
* 概率
* @author xiemin
*/
class Statist
{
private:
//角度的间隔
static const double GAP;
//概率分布数组的大小
enum { FACTOR_SIZE = 30 };
//概率分
www.eeworm.com/read/464435/1530234
h graph.h
#ifndef _GRAPH_H_
#define _GRAPH_H_
#define MAX_STR_LEN 1024
#define SCALE_FACTOR 1000.0
// Currently assuming that node coords and the wts are ints
struct Node;
struct Edge {
int index; // In
www.eeworm.com/read/457216/1599778
c mexsparchol.c
/*
% [L.L, L.d, skip, diagadd] = blkchol(L,ADA [,pars [,absd]])
% BLKCHOL Computes sparse lower-triangular Cholesky factor L,
% L*L' = P(perm,perm)
% Input Parameter L is typica
www.eeworm.com/read/251838/4414482
m ffa.m
% function [L,Ph,LL]=ffa(X,K,cyc,tol);
%
% Fast Maximum Likelihood Factor Analysis using EM
%
% X - data matrix
% K - number of factors
% cyc - maximum number of cycles of EM (default 100)
% tol - te
www.eeworm.com/read/251838/4414498
m fg3.m
% make a factor graph corresponding to an HMM with Gaussian outputs, where we absorb the
% evidence up front
seed = 1;
rand('state', seed);
randn('state', seed);
T = 3;
Q = 3;
O = 2;
cts_obs = 1;