代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/379490/9194854
txt cyuyan.txt
#include
#include
#define KEYN 3
struct ele{
int key;
struct ele *link;
};
void basesort(struct ele **h)
{
int i,j,factor;
struct ele *head[10],*tail[10],*p,*u;
www.eeworm.com/read/378952/9211920
h options.h
/*
* Interval is the minimum amount of time between sending a ping packet to
* any host.
*
* Perhost_interval is the minimum amount of time between sending a ping
* packet to a particula
www.eeworm.com/read/378788/9215875
m ex_07_04_1.m
% ex_07_04_1.m : 习题 7.4
clear all;
close all;
N=33;
m=(N-1)/4;
n=1:N;
h(n)=0;
for k=0:(m-1)
n=4*k+2;
h(n+1)=8/(pi*(n-16))/(pi*(n-16));
end
h((N+1)/2)=0.5;
for k=0:(N-1)/2
www.eeworm.com/read/378788/9215896
m ex_07_03_1.m
% ex_07_03_1.m : 习题 7.3
clear all;
fl=pi/4; N=29;
factor=(N+1)/2;
m=factor*fl/pi;
m=floor(m);
j=sqrt(-1);
for k=0:(N-1)
if(k=(N-m))
a=-j*(N-1)*k*pi/N;
H(k+1)
www.eeworm.com/read/181830/9235656
m projection_shift.m
function [Pnew,Ptnew,F] = projection_shift(P,Pt,nshift,side,Qsize)
% PROJECTION_SHIFT -- relative shift of biorthogonal multiwavelets
%
% [Pnew,Ptnew,F] = projection_shift(P,Pt,nshift,side,Qsi
www.eeworm.com/read/181830/9235768
m match_type.m
function [type,m,r] = match_type(varargin)
% MATCH_TYPE - propagate type, dilation factor, multiplicity
%
% [type,m,r] = match_type(P1,P2,P3,...)
%
% This is used only in multiwavelet ca
www.eeworm.com/read/180485/9305415
m program_10_7.m
% Program 10_7
% Illustration of Sampling Rate Alteration by
% a Ratio of Two Integers
%
clf;
N = input('Length of input signal = ');
L = input('Up-sampling factor = ');
M = input('Down-samplin
www.eeworm.com/read/180141/9318446
c 8-2-12.c
/*中国系统分析员顾问团,http://www.csai.cn*/
/*程序员下午考试指南书籍源码*/
#include
#include
#define N 100
long factor (int m,int fac[],int *cp){
int c1, c2 , i, k;
long s;
fac[0] = 1;
for(
www.eeworm.com/read/180035/9321930
cpp 数值分析2.cpp
#include
long double factor(int m) //用于求N的阶乘
{
if(m==0)
return 1;
else
return m*factor(m-1);
}
void main()
{
long double x[100],y[100], f[100][100],g[100][100]