代码搜索:模版匹配
找到约 3,092 项符合「模版匹配」的源代码
代码结果 3,092
www.eeworm.com/read/173487/9655313
txt 使用说明文件.txt
自助友情链接系统 V1.0的说明
#-----------------------------------------------------#
1、实现自动链接页面PR值检测、Alexa世界排名检测。
2、实现无人职守,24小时即时完成链接交换
3、自主管理、添加、删除、推荐等级等管理动作。
4、使用ASP.NET 2.0核心,安全高效!
5、标签模版化页
www.eeworm.com/read/390693/8452216
m sub.m
% function d = sub(a,b)
% 求a, b之差的函数, 返回值d为标量
function d = sub(a,b)
if (size(a)~=size(b))
warning('a, b必须为相同行列数的矩阵、向量或标量.');
d = NaN; % 当a,b行列数不匹配时, 返回非数常量NaN
else
d = a-b; % 当a,b行列数一致
www.eeworm.com/read/189023/8496381
m ex0712.m
%例7-12 正则表达式简单应用
stra = 'bat cat can car COAT court cut ct CAT-scan';
regexpi(stra, 'c[aeiou]+t') %匹配c*t模式的字符串,其中*是aeiou中的某一个字符
strb = {'Madrid, Spain' 'Romeo and Juliet' 'MATLAB is great'};
s1 =
www.eeworm.com/read/188087/8573218
txt readme.txt
Example:
编译:mpicc rank_sort.c –o rank
运行:可以使用命令 mpirun –np SIZE rank来运行该串匹配程序,其中SIZE是所使用的处理器个数。本实例中使用了SIZE=3个处理器。
mpirun –np 3 rank
运行结果:
Input the Data Size :30
Please Input Seed:396
Random Numbers
www.eeworm.com/read/188087/8573248
txt readme.txt
Example:
编译:mpicc psrs_sort.c –o psrs
运行:可以使用命令 mpirun –np SIZE psrs来运行该串匹配程序,其中SIZE是所使用的处理器个数,本实例中使用了SIZE=3个处理器。
mpirun –np 3 psrs
运行结果:
The DataSize is : 60
This is node 0
On node 0 the input dat
www.eeworm.com/read/383376/8951555
txt readme.txt
Example:
编译:mpicc rank_sort.c –o rank
运行:可以使用命令 mpirun –np SIZE rank来运行该串匹配程序,其中SIZE是所使用的处理器个数。本实例中使用了SIZE=3个处理器。
mpirun –np 3 rank
运行结果:
Input the Data Size :30
Please Input Seed:396
Random Numbers
www.eeworm.com/read/426535/9014807
m ex0712.m
%例7-12 正则表达式简单应用
stra = 'bat cat can car COAT court cut ct CAT-scan';
regexpi(stra, 'c[aeiou]+t') %匹配c*t模式的字符串,其中*是aeiou中的某一个字符
strb = {'Madrid, Spain' 'Romeo and Juliet' 'MATLAB is great'};
s1 =
www.eeworm.com/read/181930/9224931
txt readme.txt
Example:
编译:mpicc rank_sort.c –o rank
运行:可以使用命令 mpirun –np SIZE rank来运行该串匹配程序,其中SIZE是所使用的处理器个数。本实例中使用了SIZE=3个处理器。
mpirun –np 3 rank
运行结果:
Input the Data Size :30
Please Input Seed:396
Random Numbers
www.eeworm.com/read/181930/9224940
txt readme.txt
Example:
编译:mpicc psrs_sort.c –o psrs
运行:可以使用命令 mpirun –np SIZE psrs来运行该串匹配程序,其中SIZE是所使用的处理器个数,本实例中使用了SIZE=3个处理器。
mpirun –np 3 psrs
运行结果:
The DataSize is : 60
This is node 0
On node 0 the input dat
www.eeworm.com/read/362558/9992504
txt 4_10.txt
int StrIndex(SString s,int pos, SString t)
/*求从主串s的下标pos起,串t第一次出现的位置,成功返回位置序号,不成功返回-1*/
{
int i, j, start;
if (t.len==0)
return(0); /* 模式串为空串时,是任意串的匹配串 */
start=pos;
i=start;
j=