Function name correction + new dev repo link

This commit is contained in:
zymon 2022-10-09 14:05:53 +02:00
parent 0a417837b7
commit 89dcd1bc92
3 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
name = "STFT"
uuid = "58bb99bf-048b-48b7-93e7-1cbf3ee61509"
authors = ["Szymon M. Woźniak"]
version = "1.0.0"
version = "1.0.1"
[deps]
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"

View file

@ -19,7 +19,7 @@ To install this package from General registry, use the following command in Juli
```
Alternatively, directly via repository:
```julia
pkg> add https://github.com/s-zymon/STFT.jl
pkg> add https://git.sr.ht/~zymon/STFT.jl
```

View file

@ -211,7 +211,7 @@ xr = istft(X, w, L) # Synthesis
function synthesis() end
"$doc_synthesis"
isftf(X, w, L=0, N=length(w)) = synthesis(X, w, L, N)
istft(X, w, L=0, N=length(w)) = synthesis(X, w, L, N)
function synthesis(
X::AbstractMatrix{<:Complex},