Changes in version 2.1.2 (2025-04-25) o Minor version bump do address cran check o CI is now through github actions Changes in version 2.1.1 (2022-01-31) o Fixes some build check errors on cran related to vignettes o Added some additional unit tests Changes in version 2.1.0 (2020-06-29) o Fixed an issue related to how psd initiates its internal options. o New flag in psdcore indivating if calculations are multivariate or not; this will be used in the future to make plotting functions more robust. o With the addition of a new function na_locf, the dependency on zoo has been removed. Changes in version 2.0.0 (2020-06-22) o Major bump which adds multivariate calculations (i.e., the cross spectrum) using the same optimization feature. Changes in version 1.2.1 o Minor bump to fix incorrect orcid no. in description file Changes in version 1.2.0 (2019-03-20) o Significant speed improvements in spectral derivative computation implemented in riedsid2 thanks to @jkennel; this will be most apparent for very long timeseries. o riedsid is deprecated o niter in pspectrum default set down from 5 to 3 o Modernized revdep checks Changes in version 1.1.0 o ctap_simple_rcpp replaces ctap_simple; associated .c code deprecated o New unit-test coverage o Windows CI o Fixing new NAMESPACE requirements with importFrom statements o Reverse-dependency checking in revdep/ Changes in version 1.0-1 (2015-03-22) o Addresses three minor c++ issues associated with type overloads (not seen until CRAN-build-checks): 1. resample_fft.cpp:92:22 2. resample_fft.cpp:104:31 3. resample_fft.cpp:264:34 o Prevents test-failure when fftw is not available. Thanks again, fftw! Changes in version 1.0-0 (2015-03-18) o This is a major version bump that addresses performance issues by converting known bottlenecks to c++ though the Rcpp package. There has also been quite a lot of cleanup and rearranging of documentation, and making sure methods are consistent. Some attempts to be backwards compatible have been made, but don't be surprised if results from previous versions are different - sorry! o psdcore now uses resample_fft_rcpp which is a lightning-fast (by comparison with pure-R) implementation of the fft-resampling/reweighting method we use; this new function leverages the power of RcppArmadillo. o ctap_simple has been superceded by ctap_simple_rcpp; in the process of rewriting in c++, a minor bug in the c implementation was found (and fixed). o Issues/pull-requests can be entered on the Issues page. o Taper constraints: ctap_simple_rcpp/ctap_simple and ctap_loess gain their own man-page; ctap_markov and ctap_friedman were previously made defunct, but are now permanently removed from the code-base. Changes in version 0.4-3 o Thanks to David Myer for catching a number of mistakes in the code and documentation, including a bug in riedsid from an improper choice of logarithm base. o Removed the Local.loss argument from riedsid Changes in version 0.4-2 o Removed unused variables in ctap_simple.c o Removed deprecated @S3method statements. Changes in version 0.4-1 (2014-04-16) o We have published a paper in Computers & Geosciences regarding psd, and the citation is up to date: citation('psd') If you cannot access the publication (10.1016/j.cageo.2013.09.015), contact Andy for a reprint. o Fixed an example which was causing CRAN-buildcheck errors. o Fixed a small error in the normalization vignette - thanks to Richard Gaal for spotting this. Changes in version 0.4-0 (2013-09-20) o The taper-constraint methods ctap_markov and ctap_friedman are now defunct. o Removed 'units.sty' dependency in vignettes (was causing NOTES and unhappiness). o VignetteEngine added, and :::'s removed, in order to ensure compatibility with R-devel. o Added citation information for upcoming paper in Computers and Geoscience. Changes in version 0.3-2 (2013-03-27) o Revised discussions regarding AR response spectrum. o Fixed psdcore: it was applying parabolic weights incorrectly. o Changed argument name ntap_pilot in pspectrum to ntap.init. o Changed ceiling in minspan to round. o Fixed km field in magnet dataset. o Fixed referencing s.t. ?plot isn't ambiguous. o The default number of iterations and pilot tapers was changed to 3 and 7 respectively. Changes in version 0.3-1 (2013-03-13) o This marks the first release to CRAN: psd. We have included three vignettes, one of which is an overview of the general functionality of the program. These may be listed with vignette(pack="psd"), but we recommend consulting vignette("psd_overview", package="psd") to begin. o Altered the environment manipulation features to prevent .GlobalEnv modification. o Fixed CRAN-check failure with usepackage{color} in vignettes. o Removed empty .Last.lib function to prevent CRAN-check note. Changes in version 0.3-0 o Added Tohoku data. Changes in version 0.1-0 o First working version