代码搜索:shift

找到约 10,000 项符合「shift」的源代码

代码结果 10,000
www.eeworm.com/read/124442/14567603

c info.c

/* * linux/kernel/info.c * * Copyright (C) 1992 Darren Senn */ /* This implements the sysinfo() system call */ #include #include #include
www.eeworm.com/read/124221/14587767

txt d11r4.txt

implementation //PROGRAM D11R4 //Driver for routine TTEST uses unit2; {$R *.DFM} procedure TForm1.Button1Click(Sender: TObject); const s1='%9.2f'; NPTS = 1024; MPTS = 512; EPS = 0.02;
www.eeworm.com/read/223063/14662806

cpp pgm08_03.cpp

// // This file contains the C++ code from Program 8.3 of // "Data Structures and Algorithms // with Object-Oriented Design Patterns in C++" // by Bruno R. Preiss. // // Copyright (c) 1998
www.eeworm.com/read/222998/14665724

eqn hdlc.map.eqn

-- Copyright (C) 1991-2005 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions, and any o
www.eeworm.com/read/122711/14673081

cpp demo11_4.cpp

// DEMO11_4.CPP - a fixed point demo // INCLUDES /////////////////////////////////////////////////////////////// #define WIN32_LEAN_AND_MEAN // make sure certain headers are included correctly
www.eeworm.com/read/122361/14697924

~pas ywgl_shfw_tjform.~pas

unit YWGL_SHFW_TJFORM; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, DBCtrls, StdCtrls, Buttons, ExtCtrls, Mask, Db, ADODB, ComCtrls; type
www.eeworm.com/read/122361/14698472

pas ywgl_shfw_tjform.pas

unit YWGL_SHFW_TJFORM; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, DBCtrls, StdCtrls, Buttons, ExtCtrls, Mask, Db, ADODB, ComCtrls; type
www.eeworm.com/read/122037/14724089

txt d11r4.txt

implementation //PROGRAM D11R4 //Driver for routine TTEST uses unit2; {$R *.DFM} procedure TForm1.Button1Click(Sender: TObject); const s1='%9.2f'; NPTS = 1024; MPTS = 512; EPS = 0.02;
www.eeworm.com/read/221695/14729005

c info.c

/* * linux/kernel/info.c * * Copyright (C) 1992 Darren Senn */ /* This implements the sysinfo() system call */ #include #include #include
www.eeworm.com/read/221335/14744329

m ccorr.m

function r=ccorr(seq1,seq2) if nargin==1 seq2=seq1; end N=length(seq1); for k=-N+1:-1 seq2_shift=[seq2(k+N+1:N) seq2(1:k+N)]; r(N+k)=seq1*seq2_shift'; end for k=0:N-1 seq2_sh