Skip to content

Commit 6387c2f

Browse files
committed
bump version
1 parent db53ded commit 6387c2f

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ControlSystemIdentification"
22
uuid = "3abffc1c-5106-53b7-b354-a47bfc086282"
33
authors = ["baggepinnen <[email protected]>"]
4-
version = "2.11.9"
4+
version = "2.11.10"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

src/frd.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -325,9 +325,8 @@ function wcfft_mimo(y::AbstractVector, u::AbstractMatrix; n = length(y) ÷ 10, n
325325
win, norm2 = DSP.Periodograms.compute_window(window, n)
326326

327327
# Dimensions for FFT
328-
nfft = nextfastfft(n)
329-
n_freqs = nfft ÷ 2 + 1
330-
328+
n_freqs = n ÷ 2 + 1
329+
331330
# Initialize Accumulators
332331
Syy = zeros(Float64, n_freqs)
333332
Suu = [zeros(ComplexF64, n_inputs, n_inputs) for _ in 1:n_freqs]

0 commit comments

Comments
 (0)