代码搜索:shift
找到约 10,000 项符合「shift」的源代码
代码结果 10,000
www.eeworm.com/read/147422/5729525
m cshift.m
%FUNCTION: circular shift the vector.
%cshift(xx,nn) circular shift vector xx to nn points.
function yy=cshift(xx,nn);
lenx=length(xx);
nn=nn-lenx*floor(nn/lenx);
yy(nn+1:lenx)=xx(1:lenx-nn);
www.eeworm.com/read/147422/5729919
m cshift.m
%FUNCTION: circular shift the vector.
%cshift(xx,nn) circular shift vector xx to nn points.
function yy=cshift(xx,nn);
lenx=length(xx);
nn=nn-lenx*floor(nn/lenx);
yy(nn+1:lenx)=xx(1:lenx-nn);
www.eeworm.com/read/145823/5743700
c editfloat.c
/*
*********************************************************************************************************
* uC/GUI
* Univers
www.eeworm.com/read/144216/5752190
t unsync2.t
use Thread;
$| = 1;
srand($$^$^T);
sub printargs {
my $thread = shift;
my $arg;
my $i;
while ($arg = shift) {
my $delay = int(rand(500));
$i++;
print "$thread arg $i is $arg\n";
www.eeworm.com/read/144216/5752415
t db-recno.t
#!./perl -w
BEGIN {
@INC = '../lib';
require Config; import Config;
if ($Config{'extensions'} !~ /\bDB_File\b/) {
print "1..0 # Skip: DB_File was not built\n";
exit 0;
}
}
use DB_F
www.eeworm.com/read/144212/5752890
shcat2
shcat()
{
while read -r line
do
echo "$line"
done
}
shcat2()
{
while [ $# -ge 1 ]; do
case "$1" in
-) shcat ;;
*) shcat < "$1" ;;
esac
shift
done
exit 0
}
www.eeworm.com/read/141137/5777327
c editfloat.c
/*
*********************************************************************************************************
* uC/GUI
* Univers
www.eeworm.com/read/140886/5778476
c editfloat.c
/*
*********************************************************************************************************
* uC/GUI
* Universal
www.eeworm.com/read/140582/5785848
in _plutorun.in
#!/bin/sh
# Pluto control daemon
# Copyright (C) 1998, 1999, 2001 Henry Spencer.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Publ
www.eeworm.com/read/140582/5786999
look-for-key
#!/bin/sh
#
# this script looks for a KEY resource record at a given name
# It does so using lwdnsq in HEAD
# and
# with dig in 2.xx
#
item=$1 shift
partof=$1 shift
dig $item key >/dev/null
ech