代码搜索:factor

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

代码结果 6,651
www.eeworm.com/read/154277/5638427

java synchronizeddouble.java

/* File: SynchronizedDouble.java Originally written by Doug Lea and released into the public domain. This may be used for any purposes whatsoever without acknowledgment. Thanks for the a
www.eeworm.com/read/154277/5638459

java synchronizedchar.java

/* File: SynchronizedChar.java Originally written by Doug Lea and released into the public domain. This may be used for any purposes whatsoever without acknowledgment. Thanks for the ass
www.eeworm.com/read/475959/6771574

cpp 6_34.cpp

#include #include using namespace std; double *quadratic(double *factor) //返回指针类型 { static double result[2]; //语句1:设置静态属性用于保持数值 double delta; delta=factor[1]*factor[1]
www.eeworm.com/read/475959/6771630

cpp 6_38.cpp

#include #include using namespace std; unsigned long factor(int n) //阶乘函数 { if(n==0) return 1; return (n*factor(n-1));} int main(int argc, char *argv[]) //带命令行参数的main函数
www.eeworm.com/read/475710/6775990

m tfrrmsc.m

function [tfr,rtfr,hat] = tfrrmsc(x,t,N,f0T,trace,K); %TFRRMSC Reassigned Morlet Scalogram time-frequency distribution. % [TFR,RTFR,HAT] = TFRRMSC(X,T,N,F0T,TRACE) % computes the Morlet scalogram and
www.eeworm.com/read/475765/6777693

dir whatif5_1.dir

whatif5_1 y = 2*exp(-3*t)+6*exp(-3*t)*t simple(y) simplify: 2*exp(-3*t)+6*exp(-3*t)*t radsimp: 2*exp(-3*t)+6*exp(-3*t)*t combine(trig): 2*exp(-3*t)+6*exp(-3*t)*t factor:
www.eeworm.com/read/475765/6778146

m smoother.m

% SMOOTHER.M A smoothing filter defined as % y(n) = a*y(n-1) +(1-a)*x(n) , y(-1)=0 % x(n) is input signal, y(n) is smoothed output % % Test signal is sin(w*t) with random noise % INPUT: We
www.eeworm.com/read/475370/6779076

m mimoncmmse.m

function [DetSignal]=MIMONCMMSE(InputMessage,ChM,M,Sigma,NFactor,OrdFlag) % detect MIMO VBLAST Signals using MMSE Algorithms % CopyRight(C) Jim, NCL, UESTC % Date: 2005-11-17 % ====
www.eeworm.com/read/475370/6779077

m mimonczf.m

function [DetSignal]=MIMONCZF(InputMessage,ChM,M,Sigma,NFactor,OrdFlag) % detect MIMO VBLAST Signals using Zero Forcing Algorithms % CopyRight(C) Jim, NCL, UESTC % Date: 2005-11-17
www.eeworm.com/read/474465/6809787

m rwg3.m

function [] = rwg3 %RWG3 Calculates the impedance matrix using function IMPMET % Uses the mesh file from RWG2, mesh2.mat, as an input. % % The following parameters need to be specified prior t