Skip to content

Commit

Permalink
mention bug in MA
Browse files Browse the repository at this point in the history
  • Loading branch information
Datseris committed Nov 25, 2020
1 parent ff7cbf2 commit 89e141e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ARFIMA"
uuid = "9d0fb3db-ba49-4108-bc86-650b3813b6d5"
authors = ["George Datseris <datseris.george@gmail.com>"]
version = "0.3.0"
version = "0.3.1"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 2 additions & 0 deletions src/ARFIMA.jl
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ function generate_noise(rng, N, σ, θ::Nothing)
end

function generate_noise(rng, N, σ, θ::SVector{Q}) where {Q} # MA
@warn "There is a critical in the Moving Average code. Please help us fix it. "*
"https://github.com/JuliaDynamics/ARFIMA.jl/issues/3"
ε = generate_noise(rng, N+Q, σ, nothing)
noise = zeros(N)
θ = -θ # this change is necessary due to the defining equation
Expand Down

2 comments on commit 89e141e

@Datseris
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/25277

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.1 -m "<description of version>" 89e141ef7fcc6893cfab8239e54efc5c219c3dc1
git push origin v0.3.1

Please sign in to comment.