代码搜索:gaussian
找到约 7,040 项符合「gaussian」的源代码
代码结果 7,040
www.eeworm.com/read/275532/10812756
c gaussian.c
/* Gaussian elimitation */
#include "stdio.h"
#include "math.h"
#define N 11
#define M 10
void main()
{
static float a[M][N];
float x[M]={0};
float r,s;
int i,j,k;
f
www.eeworm.com/read/274679/10858608
m gaussian.m
% gaussian - returns a 1d Gaussian kernel.
%
% kernel = gaussian(peak,sigma,maxhw)
% Returns a 1d Gaussian kernel with peak as the value
% at the maximum and sigma as the standard deviation (in
www.eeworm.com/read/273372/10918801
c gaussian.c
#include
#define pi 3.1415
double
gaussian(double x)
{
double resu;
resu=-0.5*x*x;
resu=exp(resu);
resu=resu/sq
www.eeworm.com/read/271040/11011012
c gaussian.c
#include
#define pi 3.1415
double
gaussian(double x)
{
double resu;
resu=-0.5*x*x;
resu=exp(resu);
resu=resu/sq
www.eeworm.com/read/461264/7230339
pro gaussian.pro
function gaussian, xi, parms, pderiv, DOUBLE=double
;+
; NAME:
; GAUSSIAN
; PURPOSE:
; Compute the 1-d Gaussian function and optionally the derivative
; EXPLANATION:
; Compute the 1-
www.eeworm.com/read/457710/7319148
jpg gaussian.jpg
www.eeworm.com/read/454976/7380700
m gaussian.m
function g = gaussian(x,pos,wid)
% gaussian(x,pos,wid) = gaussian peak centered on pos, half-width=wid
% x may be scalar, vector, or matrix, pos and wid both scalar
% T. C. O'Haver, 1988
% Example:
www.eeworm.com/read/453233/7424532
m gaussian.m
function x=gaussian(p,q)
%gaussian sequence
n=0:15;
x=exp(-1*(n-p).^2/q);