代码搜索:pattern

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

代码结果 10,000
www.eeworm.com/read/445174/7598245

m test_artmap.m

function test_artmap(Io,z,w,rhobar,L,n1,n2,noise) Io=degrade(Io,noise); Ic=1-Io; I=[Io;Ic]; rho=rhobar; [n np]=size(I); [Mb M]=size(w); for pattern=1:np ok=0; for j=1:M T(j)=norm(min(
www.eeworm.com/read/441132/7675557

c match.c

/* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland * All rights reserved * Simple pattern matching, with '*' and '?' as wi
www.eeworm.com/read/247087/12684484

h cluster.h

// Cluster.h: interface for the CCluster class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_CLUSTER_H__E921280B_4D09_4970_813F_8831EAEDF1F4__INCLUDE
www.eeworm.com/read/243030/12967908

java filefilter.java

import java.io.File; import java.io.FilenameFilter; import java.util.regex.Pattern; public class FileFilter implements FilenameFilter { private Pattern pattern; /** * 构造函数,通过regex参数生成代表正
www.eeworm.com/read/326956/13108175

h cluster.h

// Cluster.h: interface for the CCluster class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_CLUSTER_H__E921280B_4D09_4970_813F_8831EAEDF1F4__INCLUDE
www.eeworm.com/read/324791/13244733

h cluster.h

// Cluster.h: interface for the CCluster class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_CLUSTER_H__E921280B_4D09_4970_813F_8831EAEDF1F4__INCLUDE
www.eeworm.com/read/137855/13293443

h cluster.h

// Cluster.h: interface for the CCluster class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_CLUSTER_H__E921280B_4D09_4970_813F_8831EAEDF1F4__INCLUDE
www.eeworm.com/read/322022/13390894

java regexsplit2.java

package com.ronsoft.books.nio.regex; import java.util.regex.Pattern; import java.util.regex.PatternSyntaxException; /** * Test regex splitting with arbitrary regexs. * Remember to quote the input
www.eeworm.com/read/322022/13390896

java poodle.java

package com.ronsoft.books.nio.regex; import java.util.regex.Pattern; import java.util.List; import java.util.LinkedList; /** * Demonstrate behavior of splitting strings. The XML output created *
www.eeworm.com/read/322022/13390897

java backslashes.java

package com.ronsoft.books.nio.regex; import java.util.regex.Pattern; import java.util.regex.Matcher; /** * Demonstrate behavior of backslashes in regex patterns. * * Created: April, 2002 * @aut