代码搜索:sinc

找到约 1,568 项符合「sinc」的源代码

代码结果 1,568
www.eeworm.com/read/227635/14418980

sinc

www.eeworm.com/read/291752/8398445

h sinc.h

// // File = sinc.h // #ifndef _SINC_H_ #define _SINC_H_ double sinc(double x); double sinc_sqrd(double x); #endif
www.eeworm.com/read/291752/8399552

cpp sinc.cpp

// // File = sinc.cpp // #include #include #include "sinc.h" #include #ifndef PI #define PI 3.1415926535897932 #endif using namespace std; double sinc(do
www.eeworm.com/read/391253/8414115

m sinc.m

% MATLAB SIMULATION OF NSA FS-1016 CELP v3.2 % COPYRIGHT (C) 1995-99 ANDREAS SPANIAS AND TED PAINTER % % This Copyright applies only to this particular MATLAB implementation % of the FS-1016 CELP
www.eeworm.com/read/390099/8486229

m sinc.m

function y=sinc(x) y=ones(size(x)); i=find(x); y(i)=sin(pi*x(i))./(pi*x(i));
www.eeworm.com/read/289710/8533803

mat sinc.mat

www.eeworm.com/read/289416/8552809

mat sinc.mat

www.eeworm.com/read/287843/8664675

m sinc.m

function y=sinc(x) %SINC Sin(pi*x)/(pi*x) function. % SINC(X) returns a matrix whose elements are the sinc of the elements % of X, i.e. % y = sin(pi*x)/(pi*x) if x ~= 0 %
www.eeworm.com/read/287843/8665201

m sinc.m

function y=sinc(x) % Y=SINC(X), determines the sinc function y=(sin(pi*x)+(x==0))./(pi*x+(x==0));
www.eeworm.com/read/431596/8666280

m sinc.m

function y=sinc(x) % Y=SINC(X), determines the sinc function y=(sin(pi*x)+(x==0))./(pi*x+(x==0));