Changes
Page history
Update Flow charts
authored
Mar 19, 2021
by
Andrew Matas
Show whitespace changes
Inline
Side-by-side
Flow-charts.md
View page @
b98bd29d
...
@@ -76,28 +76,23 @@ graph TD
...
@@ -76,28 +76,23 @@ graph TD
```
mermaid
```
mermaid
graph TD
graph TD
A1[Preprocessed time series 1]
h1[Preprocessed time series 1]
A2[Preprocessed time series 2]
h2[Preprocessed time series 2]
A1-->A11[Time Series 1, Segment I]
h1-->Auto1(PSD)
A1-->A10[Time Series 1, Segment I-1]
h2-->Auto2(PSD)
A1-->A12[Time Series 1, Segment I+1]
h1-->Cross(FFT and CSD)
A2-->A21[Time Series 2, Segment I]
h2-->Cross(FFT and CSD)
A2-->A20[Time Series 2, Segment I-1]
PSDmethod[PSD Method]-->Auto1
A2-->A22[Time Series 2, Segment I+1]
PSDmethod-->Auto2
A10-->B1(PSD, Welch)
CSDmethod[CSD Method]-->Cross
A12-->B1(PSD, Welch)
Cross-->CoarseGrain(Coarse graining)
A20-->B2(PSD, Welch)
Auto1-->PSD1[PSD 1]
A22-->B2(PSD, Welch)
Auto2-->PSD2[PSD 2]
A11-->B3(FFT and CSD)
CoarseGrain-->Cross[CSD]
A21-->B3(FFT and CSD)
style Auto1 fill:#ffb,stroke:#bbb
B3-->C(Coarse graining)
style Auto2 fill:#ffb,stroke:#bbb
B1-->D1[PSD 1]
style Cross fill:#ffb,stroke:#bbb
B2-->D2[PSD 2]
style CoarseGrain fill:#ffb,stroke:#bbb
C-->D3[CSD]
style B1 fill:#bbf,stroke:#bbf
style B2 fill:#bbf,stroke:#bbf
style B3 fill:#bbf,stroke:#bbf
style C fill:#0f0,stroke:#0f0
```
```
### Post processing
### Post processing
...
...
...
...