代码搜索:pattern
找到约 10,000 项符合「pattern」的源代码
代码结果 10,000
www.eeworm.com/read/285975/8797847
056_best ch08.056_best
##############################################################################
## Code fragment (Recommended) from Chapter 8 of "Perl Best Practices" ##
## Copyright (c) O'Reilly & Associates
www.eeworm.com/read/285975/8797956
055_prob ch08.055_prob
##############################################################################
## Code fragment (NOT RECOMMENDED) from Chapter 8 of "Perl Best Practices" ##
## Copyright (c) O'Reilly & Associates
www.eeworm.com/read/187283/8835189
c emit-rtl.c
/* Emit RTL for the GNU C-Compiler expander.
Copyright (C) 1987, 1988 Free Software Foundation, Inc.
This file is part of GNU CC.
GNU CC is free software; you can redistribute it and/or modify
it
www.eeworm.com/read/427761/8923219
m menu.m
function menu()
gwin=figure('Menubar','none','Name','聚类分析','NumberTitle','off','position',[0,0,450,250]);
%定义一级菜单file
hfile=uimenu(gwin,'Label','未知类别聚类分析');
% 定义一级菜单下的二级菜单项:最临近距离法
uimenu(hfile,'L
www.eeworm.com/read/427761/8923247
asv menu.asv
gwin=figure('Menubar','none','Name','聚类分析','NumberTitle','off','position',[0,0,450,250]);
%定义一级菜单file
hfile=uimenu(gwin,'Label','未知类别聚类分析');
% 定义一级菜单下的二级菜单项:最临近距离法
uimenu(hfile,'Label','最临近距离法',
www.eeworm.com/read/427761/8923333
m c_zuidazuijuli.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 函数名称: C_ZuiDaZuiXiaoJuLi()
% 返回值: pattern: 样品特征库
% 函数功能: 按照最大最小距离对全体样品进行分类
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
www.eeworm.com/read/427761/8923351
m c_zuiduanjuli.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 函数名称:C_ZuiDuanJuLi()
% 参数:m_pattern:样品特征库;patternNum:样品数目
% 返回值:m_pattern:样品特征库
% 函数功能:按照最短距离法对全体样品进行分类
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
www.eeworm.com/read/383392/8950632
vhd pic_alu.vhd
-- "pic_alu.vhd"
--
-- Copyright (C) 1998 Ernesto Romani (romani@ascu.unian.it)
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU Gener
www.eeworm.com/read/185226/9049388
vhd left_right_leds.vhd
--
-- Reference design - Rotary encoder and simple LEDs on Spartan-3E Starter Kit (Revision C)
--
-- Ken Chapman - Xilinx Ltd - November 2005
-- Revised 20th February 2006
--
-- This design demo
www.eeworm.com/read/381773/9072285
txt bash编程笔记.txt
Bash特殊字符
*:匹配任何字符串
?:匹配任何单个字符
[]: 集合运算符
[set]:用字符集合作通配符匹配单个字符,如:[aeiou],[a-z],[a-h, w-z]
[!set]:除了集合外的所有字符组成的集合作通配符
< :输入重定向
> :输出重定向(没有文件则创建,有则覆盖)
>> :输出重定向(没有则创建,有则追加到文件尾部)
(): 子s ...