Skip to content

Commit

Permalink
adjust fcwt_batch() to have same default parameters as fcwt() itself.
Browse files Browse the repository at this point in the history
  • Loading branch information
lschneiderbauer committed Jun 13, 2024
1 parent d3ed53e commit bd89fc4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions R/fcwt_batch.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@
#' )
fcwt_batch <- function(signal,
sample_freq,
freq_begin,
freq_end,
n_freqs,
sigma,
max_batch_size = ceiling(4 * 10^9 / (n_freqs * 4)),
time_resolution,
freq_begin = 2 * sample_freq / length(signal),
freq_end = sample_freq / 2,
sigma = 1,
max_batch_size = ceiling(4 * 10^9 / (n_freqs * 4)),
nthreads = 8L,
progress_bar = FALSE) {
# From FFTW documentation:
Expand Down
24 changes: 12 additions & 12 deletions man/fcwt_batch.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bd89fc4

Please sign in to comment.