Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> Elementary Functions > Trigonometry > sinc

sinc

sinc function

Syntax

t=sinc(x)

Arguments

x

a real or complex vector or matrix, in radians.

t

a real or complex vector or matrix.

Description

If x is a vector or a matrix, t=sinc(x) is the vector or matrix such that t(i)=sin(x(i))/x(i) if x(i)~=0 and t(i)=1 if x(i)==0.

Examples

x=linspace(-10,10,3000);
plot2d(x,sinc(x))
[X,Y] = meshgrid(-10:0.25:10,-10:0.25:10);
f = sinc(sqrt((X).^2+(Y).^2));
mesh(X,Y,f);

See Also

  • sin — sine function
  • cos — cosine function
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:34 CEST 2016