代码搜索:split
找到约 9,328 项符合「split」的源代码
代码结果 9,328
www.eeworm.com/read/189063/8492483
m psplit.m
function [tx,ty,vx,vy]=pslit(x,y,p)
%
% Positional percentage split
%
% p defines the position to split the data
% 0-p (%) = training
% p-100 (%) = validation
%
[D L]=size(x);
tsiz
www.eeworm.com/read/388439/8609093
m psplit.m
function [tx,ty,vx,vy]=pslit(x,y,p)
%
% Positional percentage split
%
% p defines the position to split the data
% 0-p (%) = training
% p-100 (%) = validation
%
[D L]=size(x);
tsiz
www.eeworm.com/read/288527/8626170
m psplit.m
function [tx,ty,vx,vy]=pslit(x,y,p)
%
% Positional percentage split
%
% p defines the position to split the data
% 0-p (%) = training
% p-100 (%) = validation
%
[D L]=size(x);
tsiz
www.eeworm.com/read/430096/8767193
java splitting8.java
// strings/Splitting8.java
// TIJ4 Chapter Strings, Exercise 8, page 527
// Split the string Splitting.knights on the words "the" or "you."
import java.util.*;
public class Splitting8 {
public
www.eeworm.com/read/384828/8839879
java splitting.java
//: strings/Splitting.java
import java.util.*;
public class Splitting {
public static String knights =
"Then, when you have found the shrubbery, you must " +
"cut down the mightiest t
www.eeworm.com/read/187173/8848472
html splitpane.html
How to Use Split Panes (The Java™ Tutorials >
Creating a GUI with JFC/Swing > Using Swin
www.eeworm.com/read/281848/9130373
java splitting8.java
// strings/Splitting8.java
// TIJ4 Chapter Strings, Exercise 8, page 527
// Split the string Splitting.knights on the words "the" or "you."
import java.util.*;
public class Splitting8 {
public
www.eeworm.com/read/182744/9193135
java interpunction.java
import java.util.regex.*;
public class Interpunction{
String split[];
public Interpunction(String t){
Pattern p=Pattern.compile("[\\w]+");
split=p.split(t);
if(split.length!=0&&split[0].