Skip to content

Commit

Permalink
Update src/noise.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
jschepers committed Jul 31, 2024
1 parent f93a3c1 commit aca3fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/noise.jl
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Noise with exponential decay in AR spectrum.
`noiselevel` is used to scale the noise
!!! warning
With the current implementation we try to get exponential decay over the whole autoregressive (AR) spectrum, which is N-Samples (the total number of samples) long. This involves the inversion of a cholesky matrix of size NxN matrix, which will need lots of RAM for non-trivial problems.
With the current implementation we try to get exponential decay over the whole autoregressive (AR) spectrum, which is N samples (the total number of samples in the signal) long. This involves the inversion of a Cholesky matrix of size NxN matrix, which will need lots of RAM for non-trivial problems.
"""
@with_kw struct ExponentialNoise <: AbstractNoise
noiselevel = 1
Expand Down

0 comments on commit aca3fd2

Please sign in to comment.