代码搜索:factor

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

代码结果 6,651
www.eeworm.com/read/266116/11239900

cpp demo_reference_5.cpp

//********************************** //** reference_5.cpp ** //********************************** # include # include int Factor(int,int&,int&); void ma
www.eeworm.com/read/411482/11242007

c aa_hiresantialiasing.c

/* ********************************************************************************************************* * uC/GUI * Universal
www.eeworm.com/read/411472/11243130

c aa_hiresantialiasing.c

/* ********************************************************************************************************* * uC/GUI * Universal
www.eeworm.com/read/411465/11244766

c aa_hiresantialiasing.c

/* ********************************************************************************************************* * uC/GUI * Universal
www.eeworm.com/read/335993/12484157

cpp ch9_5.cpp

//********************* //** ch9_5.cpp ** //********************* #include bool Factor(int, int&, int&); void main() { int number,squared,cubed; bool error; cou
www.eeworm.com/read/148157/12488688

m plotrsm.m

function z=plotrsm(xo,b0,b,B,lohi,ngc) % %function z= plotrsm(xo,b0,b,B,lohi,{ngc}) % Plot combined mesh + contour plots of RSM models % Hard Copy: print -dljet3 % xo = vector of optimum fac
www.eeworm.com/read/248954/12530659

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/248954/12530810

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/335058/12552241

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/334951/12559035

cpp zbrac.cpp

#include #include "nr.h" using namespace std; bool NR::zbrac(DP func(const DP), DP &x1, DP &x2) { const int NTRY=50; const DP FACTOR=1.6; int j; DP f1,f2; if (x1 == x2) nrerr