mirror of
https://git.freebsd.org/ports.git
synced 2025-05-24 15:07:01 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
11 lines
636 B
Text
11 lines
636 B
Text
You can use scipy.signal tutorial and reference guide in most cases, but
|
|
there are some important differences:
|
|
* input data is assumed to be complex and two-sided spectrum is always returned
|
|
(return_onesided argument is not implemented)
|
|
* length of FFT is always same as length of segment (nfft argument is not
|
|
implemented)
|
|
* functions work always over last axis of array (axis argument is not
|
|
implemented)
|
|
* if you want to have best FFT performance with pyFFTW, you should create arrays
|
|
with empty, zeros or ones functions from SimpleSpectral instead of generic
|
|
versions from NumPy (arrays will be byte aligned for your CPU)
|