代码搜索:average

找到约 5,196 项符合「average」的源代码

代码结果 5,196
www.eeworm.com/read/187078/8858570

m thfasheji.m

function THfasheji=fashe() Pow = -30; % Average transmitted power (dBm) fc = 50e9; % sampling frequency numbits = 4; % number of bits generated by the source Ts =5e-9; Nh = 2;
www.eeworm.com/read/421048/10758910

m baseline1.m

function b = BaseLine1(x,L,approach) % % b = BaseLine1(x,L,approach), % Baseline wander extraction from biomedical recordings, using a single % stage of median or moving average filtering. % %
www.eeworm.com/read/416329/11032547

m avgofmatblks.m

% % finds average of different blocks of input matrix % % INPUT % % i,j,w,h are vectors % % mat : input matrix % % i(k): beginning row index of kth block % % j(k): beginning column index of kth b
www.eeworm.com/read/461210/7231723

m avgofmatblks.m

% % finds average of different blocks of input matrix % % INPUT % % i,j,w,h are vectors % % mat : input matrix % % i(k): beginning row index of kth block % % j(k): beginning column index of kth b
www.eeworm.com/read/446450/7578511

java quizaverage.java

// Exercise 14.12: QuizAverage.java // Application enables a user to enter grades and have the average // calculated. import java.awt.*; import java.awt.event.*; import java.text.*; import javax
www.eeworm.com/read/245849/12777935

m anysmooth.m

function avin=anysmooth(in,weights,endeffects) % Function computes a weighted average using symmetric weights % Written by: E. R.: July 20, 2003 % Last updated: December 12, 2004: Add third input para
www.eeworm.com/read/243682/12924451

txt foxpro.txt

/L20"FoxPro" Line Comment = * Block Comment On = && Block Comment Off = Nocase File Extensions = PRG /C1 ACCEPT ACTIVATE ACTIVATE ALTERNATIVE AMERICAN AND ANSI APPEND ARRAY AUTOSAVE AVERAGE BAR
www.eeworm.com/read/136821/5851785

h dsputil_mmx_avg.h

/* * DSP utils : average functions are compiled twice for 3dnow/mmx2 * Copyright (c) 2000, 2001 Fabrice Bellard. * Copyright (c) 2002 Michael Niedermayer * * This library is free software; you ca
www.eeworm.com/read/490330/6454686

m imgmedianfilter.m

% Median Filter function % usage: % [output_img] = imgMedianFilter ([input_img], mask_size) % mask_size - size of matrix that goes through image finding average function [img_out] = imgMedianFil
www.eeworm.com/read/488337/6493525

cpp student_seqlist.cpp

//【例2.2】 学生成绩管理。 #include "SeqList.h" //顺序表类 #include "Student.h" //学生结构体 double average(SeqList &stulist) //求平均值 {