代码搜索:split
找到约 9,328 项符合「split」的源代码
代码结果 9,328
www.eeworm.com/read/299230/7871777
m enframe.m
function f=enframe(x,win,inc)
%ENFRAME split signal up into (overlapping) frames: one per row. F=(X,WIN,INC)
%
% F = ENFRAME(X,LEN) splits the vector X up into
% frames. Each frame is of length LE
www.eeworm.com/read/296572/8091486
htm 4-13.htm
//按照"分:秒"的格式设置限制时间。
var limit="0:30"
if (document.images){
var parselimit=limit.split(":")
parselimit=parselimit[0]*60+parselimit[1]*1
}
function begintimer(){
i
www.eeworm.com/read/333698/12664439
m enframe.m
function f=enframe(x,win,inc)
%ENFRAME split signal up into (overlapping) frames: one per row. F=(X,WIN,INC)
%
% F = ENFRAME(X,LEN) splits the vector X up into
% frames. Each frame is of length LE
www.eeworm.com/read/333698/12664689
m enframe.m
function f=enframe(x,win,inc)
%ENFRAME split signal up into (overlapping) frames: one per row. F=(X,WIN,INC)
%
% F = ENFRAME(X,LEN) splits the vector X up into
% frames. Each frame is of length LE
www.eeworm.com/read/245632/12786847
py grid.py
#!/usr/bin/python
import os, sys
import Queue
import getpass
import re
from threading import Thread
from string import find, split, join, atof
is_win32 = (sys.platform == 'win32')
# svmtrain and gnu
www.eeworm.com/read/330995/12857709
h dir.h
/*
* dir.h - Header file for dir.c
*
* Copyright (C) 1997 R間is Duchesne
*/
#define ITERATE_SPLIT_DONE 1
enum ntfs_iterate_e {
BY_POSITION,
BY_NAME,
DIR_INSERT
};
/* not all fiel
www.eeworm.com/read/330486/12885795
cpp axiskdtree.cpp
#include "stdafx.h"
#include "AxisKdTree.h"
bool AxisKdCell::split(){
if(_end-_start < SEARCH_MAX)
return false;
float min[3], max[3];
_tree->_ps->bound(min, max, _start, _end);
i
www.eeworm.com/read/310043/13659232
htm 4-13.htm
//按照"分:秒"的格式设置限制时间。
var limit="0:30"
if (document.images){
var parselimit=limit.split(":")
parselimit=parselimit[0]*60+parselimit[1]*1
}
function begintimer(){
i
www.eeworm.com/read/308359/13703606
m splitstepf_mig.m
function [seismig,zmig] = splitstepf_mig(seis, t, x, velmod, zv, dz, zmax, fmax)
% SPLITSTEPF_MIG: Split-step Fourier depth migration
%
% [seismig,zmig] = splitstepf_mig(seis, t, x, velmod, zv, dz,
www.eeworm.com/read/306993/13733585
txt threads.txt
Old threading method: slice-based
application calls x264
x264 runs B-adapt and ratecontrol (serial)
split frame into several slices, and spawn a thread for each slice
wait until all threads are done
d