代码搜索:factor

找到约 6,651 项符合「factor」的源代码

代码结果 6,651
www.eeworm.com/read/441855/7663732

v parse.v

############################################################################# # U N R E G I S T E R E D C O P Y # # You are on day 49 of your 30 day trial period. # # This
www.eeworm.com/read/440289/7691001

m p206.m

% P2.6a %colordef white % Default Color Scheme n = -50:50; x = sin(0.125*pi*n); subplot(2,2,1); plot(n,x,'ko-'); title('Original Signal sin(0.125\pin)'); [y,m] = dnsample(x,n,4); sub
www.eeworm.com/read/440070/7694212

c rand.c

/*Author: Rainer Hegger. Last modified: January 24th, 1998 */ #define __RANDOM #ifndef _STDLIB_H #include #endif #ifndef _LIMITS_H #include #endif #ifndef _MATH_H #include
www.eeworm.com/read/440070/7695015

c rand.c

/* Author: Rainer Hegger. Last modified: January 24th, 1998 */ #define __RANDOM #ifndef _STDLIB_H #include #endif #ifndef _LIMITS_H #include #endif #ifndef _MATH_H #include
www.eeworm.com/read/199075/7890596

cpp returnwithref.cpp

//Listing 11.8 // Returning multiple values from a function // using references #include enum ERR_CODE { SUCCESS, ERROR }; ERR_CODE Factor(int, int&, int&); i
www.eeworm.com/read/296847/8075037

m nmf_prob.m

function [W,H]=nmfprob(X,K,maxiter,speak) % % Probabilistic NFM interpretating X as samples from a multinomial % % INPUT: % X (N,M) : N (dimensionallity) x M (samples) non negative input matrix
www.eeworm.com/read/196152/8112609

h softdemodulator.h

/************************************** * * soft demodulator * (to get the channel transmission probabilities from the received noisy symbols) * **************************************/ #ifndef
www.eeworm.com/read/196152/8112640

c softdemodulator.c

#define _1_DIV_SQRT_2PI 0.398942280 //#define EPS 1e-10 #include #include #include "SoftDemodulator.h" #include "Constant.h" SoftDemodulator::SoftDemodulator(double sigma, int
www.eeworm.com/read/295842/8137502

c csort.c

/************************************************************************ 名称: csort.c 一个动画程序来显示6个排序算法的动作。 运行这个程序要求包含
www.eeworm.com/read/145322/12735997

cpp 递归下降法整数运算.cpp

#include "递归下降法整数运算.h" char TOKEN; void get_token () { TOKEN = getchar (); } void match (char c) { if (TOKEN == c) get_token (); } int command () { int result = expression (); retu