代码搜索:MATCHING
找到约 3,451 项符合「MATCHING」的源代码
代码结果 3,451
www.eeworm.com/read/233016/14173319
m ttfig5.m
% ttfig5: Tutorial Demo -- Analyze Greasy
% Signal:
% "S" segment from the "Greasy" signal
% Ref: Mallat & Zhang (1993),
% Matching Pursuits with Time-Frequency Dictionaries
% Sample Size:
www.eeworm.com/read/129549/14238655
m dtw2.m
function dist = dtw2(test, ref)
% Compare two model using a efficient DTW
% inputs:
% test -- test model
% ref -- reference model
%
% output:
% dist -- matching score
% Copyright
www.eeworm.com/read/129549/14238659
m dtw.m
function dist = dtw(t,r)
% Compare two model using a efficient DTW
% inputs:
% test -- test model
% ref -- reference model
%
% output:
% dist -- matching score
% Copyright (C) Qi
www.eeworm.com/read/128754/14279736
m ex9_8.m
%
% In this example we plot the output matching network's
% constant gain circles as part of the amplifier design
%
% Copyright (c) 1999 by P.Bretchko and R.Ludwig
% "RF Circuit Design:
www.eeworm.com/read/122674/14676193
h dsearch.h
#ifndef DATATYPE_SEARCH_METHODS
#define DATATYPE_SEARCH_METHODS
// search the n element arrray a for a match with key
// using the sequential search. return the index of the
// matching array el
www.eeworm.com/read/119473/14829514
asm ex16_1a.asm
; EX16_1a.asm
;
; A simple floating point calculator that demonstrates the use of the
; UCR Standard Library pattern matching routines. Note that this
; program requires an FPU.
.xlist
.3
www.eeworm.com/read/119473/14829515
asm ex16_1b.asm
; EX16_1a.asm
;
; A simple floating point calculator that demonstrates the use of the
; UCR Standard Library pattern matching routines. Note that this
; program requires an FPU.
.xlist
.3
www.eeworm.com/read/217949/14942749
m ex9_8.m
%
% In this example we plot the output matching network's
% constant gain circles as part of the amplifier design
%
% Copyright (c) 1999 by P.Bretchko and R.Ludwig
% "RF Circuit Design:
www.eeworm.com/read/470720/1445454
c nested1.c
// Build don't link:
struct C
{
struct D
{
};
};
struct E
{
C& c;
void g();
};
void E::g()
{
c.D().f(); // ERROR - no matching function
}
www.eeworm.com/read/470693/1457400
c nested1.c
// Build don't link:
struct C
{
struct D
{
};
};
struct E
{
C& c;
void g();
};
void E::g()
{
c.D().f(); // ERROR - no matching function
}