代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/182760/9192417
m aad.m
AAD.m
%function D=AAD(I,J)
% AAD(I,J) returns the average absolute difference between the pixels % of I and J.
% The AAD value is useful to quantitize the distortions on an image.
if (size(I)~=s
www.eeworm.com/read/163194/10171620
m aad.m
AAD.m
%function D=AAD(I,J)
% AAD(I,J) returns the average absolute difference between the pixels % of I and J.
% The AAD value is useful to quantitize the distortions on an image.
if (size(I)~=s
www.eeworm.com/read/352960/10488296
h dsputil_mmx_avg.h
/*
* DSP utils : average functions are compiled twice for 3dnow/mmx2
* Copyright (c) 2000, 2001 Fabrice Bellard.
* Copyright (c) 2002-2004 Michael Niedermayer
*
* This library is free software; y
www.eeworm.com/read/274679/10858468
m mexlocalmaxima.m
% mexLocalMaxima - returns statistics over local maxima (mex file).
%
% [lm_avg,lm_num,lm_sum] = mexLocalMaxima(data,thresh)
% Returns the average value (lm_avg), the number (lm_num),
% and the
www.eeworm.com/read/467252/7008247
m estbeta.m
function beta = estbeta(m1, m2)
% ESTBETA Estimate the beta parameter of a generalized Gaussian
%
% Input:
% m1: average absolute values of subband coefficients
% m2: variances of subband coeffi
www.eeworm.com/read/165343/7143821
m lbarex.m
%
% test the average performance of a GS(m) code
% Copyright 2004 by Todd K. Moon
% Permission is granted to use this program/data
% for educational/research only
n = 31;
q = 32;
k = 15;
Mlist = [0,3
www.eeworm.com/read/165343/7143934
m computelbar.m
function L = computeLbar(n,k,q,t)
%function L = computeLbar(n,k,q,t)
%
% Compute the average number of codewords in a
% Hamming sphere of radius t around an randomly chosen
% point for an (n,k) code o
www.eeworm.com/read/449318/7508909
m capacityuncorrelated.m
disp('Uncorrelated Flat Fading Channel')
disp('1- Average');
disp('2- Outage');
disp('3- Go back to main list');
SelectOne=input('Input your Selection >> ');
switch SelectOne
case 1
figure;
www.eeworm.com/read/297947/7984259
m perform_median_filtering.m
function M = perform_median_filtering(M,k)
% perform_median_filtering - perform moving average median
%
% M = perform_median_filtering(M,k);
%
% k is the half width of the window (detult k=1).
%
www.eeworm.com/read/197407/7997575
cpp act3.cpp
// average completion time with m persons
#include
#include "hsort.h"
class Task {
friend void main(void);
friend void ACT(Task J[], int n, int m);
public:
o