代码搜索:split
找到约 9,328 项符合「split」的源代码
代码结果 9,328
www.eeworm.com/read/170469/9805535
java splitattr.java
package shared;
import java.lang.*;
import java.util.*;
/** A class for determining, holding, and returning the information associated with
* an attribute split.
*
*/
public class SplitAtt
www.eeworm.com/read/167116/9980451
m blackjack.m
function blackjack(N)
% BLACKJACK. Use random numbers in Monte Carlo simulation.
% Play the game of Blackjack, either one hand, or thousands of hands,
% at a time, and display payoff statistics.
%
%
www.eeworm.com/read/362500/9995889
m crcvrnd.m
function [press,fiterr,minlvp,b] = crcvrnd(x,y,split,iter,lv,powers,ss,mc)
%CRCVRND Cross validation for CR models using SDEP
% Inputs are the matrix of predictor variables (x), matrix
% of predi
www.eeworm.com/read/362500/9995984
m ridgecv.m
function [b,thetamin,cumpress] = ridgecv(xblock,yblock,thetamax,divs,split);
%RIDGECV Ridge regression by cross validation
% This function calculates a ridge regression model and uses
% cross-val
www.eeworm.com/read/359181/10162141
java splitattr.java
package shared;
import java.lang.*;
import java.util.*;
/** A class for determining, holding, and returning the information associated with
* an attribute split.
*
*/
public class SplitAtt
www.eeworm.com/read/161772/10376261
c scanf.c
/* Demonstrates some uses of scanf(). */
#include
int main( void )
{
int i1;
int i2;
long l1;
double d1;
char buf1[80];
char buf2[80];
/* Us
www.eeworm.com/read/161460/10407540
java splitattr.java
package shared;
import java.lang.*;
import java.util.*;
/** A class for determining, holding, and returning the information associated with
* an attribute split.
*
*/
public class SplitAtt
www.eeworm.com/read/279234/10453364
pl fig09_09.pl
#!usr/bin/perl
# Fig. 9.6: split.pl
# Demonstrates the split function
use warnings;
use strict;
my $string = "I will be divided up.";
my @words = split( / /, $string );
print "$_\n" foreach
www.eeworm.com/read/422951/10599724
js fw.js
/*
fw1:作战方的一个实例
sys:存放地图资源信息(矿、气)
race:存放的对战双方的对象数组,red/blue
cRace:当前操作者
udf:存放一些资源、建筑、单位等标准信息数组供调用时使用
block:
mine 矿
ves 气
build:
0_hq 基地
0_supply 房子
0_refinery 采气厂
0_barra
www.eeworm.com/read/274071/10888893
htm svm2weight.pl.txt.htm
#!perl
# Compute the weight vector of linear SVM based on the model file
# Author: Thorsten Joachims (thorsten@joachims.org)
# Call: perl svm2weight.pl model
open(M,$ARGV[0]) || die();