Skip to content

Commit

Permalink
Little tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
benfulcher committed Dec 19, 2019
1 parent ff5132a commit 046d870
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
7 changes: 2 additions & 5 deletions MkSg_noise.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function s = MkSg_Noise(whatDistribution,N,params)
% returns a noisy time series
% Returns a noisy time series
% Length N
% Sampled from a given distribution whatDistribution
% with defining parameters params
Expand All @@ -11,10 +11,7 @@
if nargin < 2 || isempty(N)
N = 1000;
end

% Part of the Make_Signal package
% Ben Fulcher 8/3/2010

%-------------------------------------------------------------------------------

switch whatDistribution
case 'uniform'
Expand Down
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# TimeSeriesGeneration
Code for generating different types of time series in Matlab.
Matlab code for generating time series different types of dynamical systems.

Basic support for:
* Autoregressive processes, `MkSg_AR`
* Systems of ODEs (dynamical systems, or flows, including all of those in *Chaos and Time-Series Analysis* by J. C. Sprott), `MkSg_Flow`
* Iterative maps (including all of those listed in *Chaos and Time-Series Analysis* by J. C. Sprott), `MkSg_Map`
* Uncorrelated random noise (from a given distribution), `MkSg_Noise`
* Self-affine processes, `MkSg_SelfAffine`
* Noisy sinusoids, `MkSg_Sine`
* Autoregressive processes: `MkSg_AR`
* Systems of ODEs (dynamical systems, or flows, including all systems included in *Chaos and Time-Series Analysis* by J. C. Sprott): `MkSg_Flow`
* Iterative maps (including all of those listed in *Chaos and Time-Series Analysis* by J. C. Sprott): `MkSg_Map`
* Uncorrelated random noise (from a given distribution): `MkSg_Noise`
* Self-affine processes: `MkSg_SelfAffine`
* Noisy sinusoids: `MkSg_Sine`

## generation of HCTSA files for different systems with continuously varying parameters
## Generation of HCTSA files for different systems with continuously varying parameters

`runScript.m`
`runScript.m`

0 comments on commit 046d870

Please sign in to comment.