代码搜索:Overlapping
找到约 346 项符合「Overlapping」的源代码
代码结果 346
www.eeworm.com/read/471212/6899495
m mexgraphneighboursoverlap.m
function [Overlap, Degrees1, Degrees2]= mexGraphNeighboursOverlap(Graph,NodeIDs1, NodeIDs2,Direction)
% Computes the ammount of overlapping neignours between each node in SourceNodeID and in Destinat
www.eeworm.com/read/233016/14173433
m thfig31.m
% thfig31: BP Thesis Figure 3.1 -- Analyzing Carbon
%
% (1) BOB cannot separate nonorthogonal atoms
% (2) MP has difficulty in separate similar (close, overlapping) atoms
% (3) BasisPursuit could
www.eeworm.com/read/216443/15007003
m firwin.m
function g=firwin(name,M,centering);
%FIRWIN FIR window
% Usage: g=firwin(name,M);
% g=firwin(name,M,centering);
%
% FIRWIN(name,M) will compute a two overlapping window of
% length
www.eeworm.com/read/366702/2876750
f90 equiv_7.f90
! { dg-do run }
! { dg-options "-std=gnu" }
! Tests the fix for PR29786, in which initialization of overlapping
! equivalence elements caused a compile error.
!
! Contributed by Bernhard Fischer
www.eeworm.com/read/366702/2878154
c 20010124-1.c
/* Verify that structure return doesn't invoke memcpy on
overlapping objects. */
extern void abort (void);
struct S {
char stuff[1024];
};
union U {
struct {
int space;
struct S s;
www.eeworm.com/read/428608/8856166
m psdavper.m
function [R,varx]=psdavper(x,L,NFFT)
%
% [R,r]=psdavper(x,L,NFFT) performs
% PSD estimation using periodogram averaging
% with 50% segment overlapping
% r=autocorrelation estimate
% R=psd estima
www.eeworm.com/read/282317/9102124
m psdavper.m
function [R,varx]=psdavper(x,L,NFFT)
%
% [R,r]=psdavper(x,L,NFFT) performs
% PSD estimation using periodogram averaging
% with 50% segment overlapping
% r=autocorrelation estimate
% R=psd estima
www.eeworm.com/read/376688/9310295
m thresh.m
% Question No: 5
% Consider an image composed of small, no overlapping blobs. Segmenting the
% blobs based on thresholding.
function thresh(x)
f=imread(x);
f=im2double(f);
%global Thresholdi
www.eeworm.com/read/357136/10215685
m psdavper.m
function [R,varx]=psdavper(x,L,NFFT)
%
% [R,r]=psdavper(x,L,NFFT) performs
% PSD estimation using periodogram averaging
% with 50% segment overlapping
% r=autocorrelation estimate
% R=psd estima
www.eeworm.com/read/278099/10570652
c sstrcpy.c
/* +++Date last modified: 05-Jul-1997 */
/*
** strcpy() and strcat() work-alikes which allow overlapping buffers.
*/
#include
#include "snip_str.h"
#if defined(__cplusplus) &&