代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/261643/11633265
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 READ
www.eeworm.com/read/347704/11648750
cpp jdcoefct.cpp
/*
* jdcoefct.c
*
* Copyright (C) 1994-1995, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying READ
www.eeworm.com/read/346949/11711675
cpp jdcoefct.cpp
/*
* jdcoefct.c
*
* Copyright (C) 1994-1995, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying READ
www.eeworm.com/read/157356/11717680
m exp_fnct.m
function y=exp_fnct(x,funfcn,k,T,p1,p2,p3)
% y=exp_fnct(x,funfcn,k,T,p1,p2,p3)
% Returns the function funfcn(x) times
% the exponential factor exp(-j*2*pi*k/T*x)
j=sqrt(-1) ;
args=[];
for nn
www.eeworm.com/read/156908/11753786
c brute.c
/*
* Program to factor numbers using brute force.
*
* Copyright (c) 1988-1997 Shamus Software Ltd.
*/
#include
#include "miracl.h"
#define LIMIT 15000
int main()
{ /* fi
www.eeworm.com/read/156798/11771276
pas unit1.pas
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
Memo1: TMemo;
www.eeworm.com/read/156798/11773113
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/156459/11801523
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/156265/11815339
m exp_fnct.m
function y=exp_fnct(x,funfcn,k,T,p1,p2,p3)
% y=exp_fnct(x,funfcn,k,T,p1,p2,p3)
% Returns the function funfcn(x) times
% the exponential factor exp(-j*2*pi*k/T*x)
j=sqrt(-1) ;
args=[];
for nn
www.eeworm.com/read/258191/11879463
cpp sieve.cpp
//: C17:Sieve.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
#include
#include