15.12.2012 Views

scipy tutorial - Baustatik-Info-Server

scipy tutorial - Baustatik-Info-Server

scipy tutorial - Baustatik-Info-Server

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

SciPy Reference Guide, Release 0.8.dev<br />

axis<br />

The transform is applied along the given axis of the input array (or the newly constructed array if n<br />

argument was used).<br />

overwrite_x<br />

If set to true, the contents of x can be destroyed.<br />

Notes:<br />

y == rfft(irfft(y)) within numerical accuracy.<br />

irfft(x, n=None, axis=-1, overwrite_x=0)<br />

irfft(x, n=None, axis=-1, overwrite_x=0) -> y<br />

Return inverse discrete Fourier transform of real sequence x. The contents of x is interpreted as the output of<br />

rfft(..) function.<br />

The returned real array contains<br />

[y(0),y(1),...,y(n-1)]<br />

where for n is even<br />

y(j) = 1/n (sum[k=1..n/2-1] (x[2*k-1]+sqrt(-1)*x[2*k])<br />

and for n is odd<br />

• exp(sqrt(-1)*j*k* 2*pi/n)<br />

• c.c. + x[0] + (-1)**(j) x[n-1])<br />

y(j) = 1/n (sum[k=1..(n-1)/2] (x[2*k-1]+sqrt(-1)*x[2*k])<br />

• exp(sqrt(-1)*j*k* 2*pi/n)<br />

• c.c. + x[0])<br />

c.c. denotes complex conjugate of preceeding expression.<br />

Optional input: see rfft.__doc__<br />

3.3.2 Differential and pseudo-differential operators<br />

diff(x[, order, period, _cache]) diff(x, order=1, period=2*pi) -> y<br />

tilbert(x, h[, period, _cache]) tilbert(x, h, period=2*pi) -> y<br />

itilbert(x, h[, period, _cache]) itilbert(x, h, period=2*pi) -> y<br />

hilbert(x[, _cache]) hilbert(x) -> y<br />

ihilbert(x) ihilbert(x) -> y<br />

cs_diff(x, a, b[, period, _cache]) cs_diff(x, a, b, period=2*pi) -> y<br />

sc_diff(x, a, b[, period, _cache]) sc_diff(x, a, b, period=2*pi) -> y<br />

ss_diff(x, a, b[, period, _cache]) ss_diff(x, a, b, period=2*pi) -> y<br />

cc_diff(x, a, b[, period, _cache]) cc_diff(x, a, b, period=2*pi) -> y<br />

shift(x, a[, period, _cache]) shift(x, a, period=2*pi) -> y<br />

diff(x, order=1, period=None, _cache={})<br />

diff(x, order=1, period=2*pi) -> y<br />

170 Chapter 3. Reference

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!