代码搜索:factor

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

代码结果 6,651
www.eeworm.com/read/221720/14726380

asv bilinear.asv

% THIS PROGRAMME IS WRITTEN BY Rockins % THE FEATURE IS BILINEAR-INTERPOLATE THE SOUCE-IMAGE TO GET A DESTINATE-IMAGE % THE MAXIMUM SCALOR == 9.0, THE MINIMUM SCALOR == 1.0 % Copyright 2006-2007,Al
www.eeworm.com/read/221179/14755633

cpp d13r7.cpp

#include "iostream.h" #include "math.h" #include "stdlib.h" void main() { //program d13r7 //driver for routine ftest int npts = 1000, nval = 10; int i,j,mpts = 500; doub
www.eeworm.com/read/121010/14775330

c jdcoefct.c

/* * jdcoefct.c * * Copyright (C) 1994-1997, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README fi
www.eeworm.com/read/220447/14800228

txt d11r7.txt

implementation //PROGRAM D11R7 //Driver for routine FTEST uses unit2; {$R *.DFM} procedure TForm1.Button1Click(Sender: TObject); const s1='%10.4f'; NPTS = 1000; MPTS = 500; NVAL = 10; E
www.eeworm.com/read/118622/14861570

txt program.txt

int max_factor ( int p , int q ) { if ( q == 0 ) return p ; else return max_factor ( q , p - p / q * q ) ; /* p - p / q * q == p mod q */ } void main ( void ) { int x ;
www.eeworm.com/read/117961/14892688

c jdcoefct.c

/* * jdcoefct.c * * Copyright (C) 1994-1997, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README fi
www.eeworm.com/read/218612/14912992

m wave_bases.m

%WAVE_BASES 1D Wavelet functions Morlet, Paul, or DOG % % [DAUGHTER,FOURIER_FACTOR,COI,DOFMIN] = ... % wave_bases(MOTHER,K,SCALE,PARAM); % % Computes the wavelet function as a function of Fou
www.eeworm.com/read/217949/14942804

m ex5_2.m

% % This file computes various quality factors and % generates the graph for Example 5.2 % % Copyright (c) 1999 by P.Bretchko and R.Ludwig % "RF Circuit Design: Theory and Practice" %
www.eeworm.com/read/116146/14987051

ly calc.ly

> { > module Calc where > import Char > } First thing to declare is the name of your parser, and the type of the tokens the parser reads. > %name calc > %tokentype { Token } The parser will be of t
www.eeworm.com/read/116146/14987125

ly calc.ly

> { > module Calc where > import Char > } First thing to declare is the name of your parser, and the type of the tokens the parser reads. > %name calc > %tokentype { Token } The parser will be of t