sinc

Sinc function.

๐Ÿ“ Syntax

  • c = sinc(m)

๐Ÿ“ฅ Input argument

  • m - input array: scalar, vector or matrix.

๐Ÿ“ค Output argument

  • c - sinc of input

๐Ÿ“„ Description

c = sinc(m) returns an arrayc whose elements are the sinc of the elements of the input: m.

The sinc function (normalized) is defined as: sinc(x)={sinโก(ฯ€x)ฯ€xifย xโ‰ 01ifย x=0\text{sinc}(x) = \begin{cases} \frac{\sin(\pi x)}{\pi x} & \text{if } x \neq 0 \\ 1 & \text{if } x = 0 \end{cases}

The sinc function is the Fourier transform of the rectangular pulse function and appears frequently in signal processing and communications.

๐Ÿ’ก Example

๐Ÿ”— See also

sin.

๐Ÿ•” History

Version
๐Ÿ“„ Description

1.0.0

initial version

Last updated

Was this helpful?