代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/281673/9142428
cpp sieve.cpp
//: C01:Sieve.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include
#include
www.eeworm.com/read/281577/9147941
m addell.m
function p3 = addell(p1,p2,a,b,n);
% This function add points on the elliptic curve
% y^2 = x^3 + ax +b mod n
% The points are represented by
% p1(1) = x1 p1(2) = y1
% p2(1) = x2 p2(2) = y2
www.eeworm.com/read/378788/9215837
m ex_07_03_2.m
% ex_07_03_2.m : 习题 7.3
clear all;
fl=pi/6;fh=pi/3;N=29;
factor=(N+1)/2;m=factor*fl/pi;
m=floor(m);m2=factor*fh/pi;m2=ceil(m2);
j=sqrt(-1);
for k=0:(N-1)
if((k=(N-m))||((k>=
www.eeworm.com/read/377891/9259058
sas yydy851.sas
/* YYDY851.sas */
data d831;
input x1-x7;
n=_n_;
cards;
11.835 0.480 14.360 25.210 25.21 0.810 0.98
45.596 0.526 13.850 24.040 26.01 0.910
www.eeworm.com/read/377891/9259071
sas yyexa901.sas
/* yyexa901.sas */
data data901;
input a b c d e f;
n=_n_;
cards;
0.056 0.084 0.031 0.038 0.0081 0.0220
0.049 0.055 0.100 0.110 0.0220 0.0073
0.038
www.eeworm.com/read/377891/9259124
sas yyexa806.sas
/* yyexa806.sas */
data data806;
input x1-x6;
n=_n_;
cards;
0.056 0.084 0.031 0.038 0.0081 0.0220
0.049 0.055 0.100 0.110 0.0220 0.0073
0.038 0.130
www.eeworm.com/read/377891/9259175
sas yydy852.sas
/* YYDY852.sas */
data d832;
input group $ x1-x8;
n=_n_;
cards;
北京 1394.89 2505 519.01 8144 373.9 117.3 112.6 843.43
天津 920.11 2720 345.46 6501 342.8 115.2
www.eeworm.com/read/376889/9302481
c jdcoefct.c
////////////////////////////////////////////////////////////////////////
//
// Note : this file is included as part of the Smaller Animals Software
// JpegFile package. Though this file has not bee
www.eeworm.com/read/180485/9305418
m program_10_1.m
% Program 10_1
% Illustration of Up-Sampling by an Integer Factor
%
clf;
N = input('Input length = ');
L = input('Up-sampling Factor = ');
fo = input('Input signal frequency = ');
% Generate t
www.eeworm.com/read/180485/9305424
m program_10_2.m
% Program 10_2
% Illustration of Down-Sampling by an Integer Factor
%
clf;
N = input('Output length = ');
M = input('Down-sampling Factor = ');
fo = input('Input signal frequency = ');
% Genera