代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/213240/15140016
m dlpdda.m
function W = dlpdda(x,nu,usematlab)
%DLPDDA Distance Linear Programming Data Description attracted by the Average distance
%
% W = DLPDDA(D,NU)
%
% This one-class classifier works directly on th
www.eeworm.com/read/210156/15205831
m huffman.m
function [h,l]=huffman(p);
%HUFFMAN Huffman code generator
% [h,l]=huffman(p), Huffman code generator
% returns h the Huffman code matrix, and l the
% average codeword length for a so
www.eeworm.com/read/210914/4946884
m smooth.m
function avin=smooth(in,dist)
% Function computes average over "dist" samples of matrix "in". "dist" must be greater
% than or equal to 1, but need not be integer
% Written by: E. R.:
% Last updat
www.eeworm.com/read/309003/3708515
m mefig205.m
% mefig205 -- Four Test Functions
%
% We illustrate here four test functions, Ramp,
% Cusp, noise, and HeaviSine, for demonstration
% of segmented average-interpolation.
%
global n x
global R
www.eeworm.com/read/273525/4209651
hlp tssmooth_dlg.hlp
{smcl}
{* 03mar2005}{...}
dialogs for {cmd:tssmooth}
{hline}
{dialog tssmooth_ma:Moving-average filter}
{dialog tssmooth_exponential:Single exponential smoothing}
{dialog tssmo
www.eeworm.com/read/418440/2088820
h measure.h
#ifndef _MEASURE_H_
#define _MEASURE_H_
#include
#include
using namespace std;
/**
* That class realyze a set of measure on which you can
* calculate, average, variance, confi
www.eeworm.com/read/402787/2318045
cpp ex3_10.cpp
// Ex3_10.cpp
// Using an infinite for loop to compute an average
#include
using std::cin;
using std::cout;
using std::endl;
int main()
{
double value = 0.0; //
www.eeworm.com/read/371704/2779198
m smooth.m
function avin=smooth(in,dist)
% Function computes average over "dist" samples of matrix "in". "dist" must be greater
% than or equal to 1, but need not be integer
% Written by: E. R.:
% Last updat
www.eeworm.com/read/476076/6773362
m huffman.m
function [h,l]=huffman(p);
%HUFFMAN Huffman code generator
% [h,l]=huffman(p), Huffman code generator
% returns h the Huffman code matrix, and l the
% average codeword length for a so
www.eeworm.com/read/476090/6773470
m mean.m
function y = mean(x,dim)
%MEAN Average or mean value.
% For vectors, MEAN(X) is the mean value of the elements in X. For
% matrices, MEAN(X) is a row vector containing the mean value of
%