You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, you define a vector containing named vectors of peak types, ``m_{prior}``, ``\sigma_{m_{prior}}``, and lower and upper boundaries. For instance, after a visual review of the signal above, you would declare a vector of peak informations like this:
Copy file name to clipboardExpand all lines: docs/src/PreProcessing.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -7,29 +7,29 @@ Spectra allows you to perform several processing steps on x-y spectral data. Bel
7
7
As a starting point and for the sack of example, we create two synthetic signals to play with. They will be Gaussian signals randomly sampled along two different X axis, with noise and increasing backgrounds. One of them will also have a strong spike!
8
8
9
9
```@example 1
10
-
## Signal creation
10
+
# Signal creation
11
11
using Spectra, Plots
12
12
13
-
## we create a fake signal with
13
+
# we create a fake signal with
14
14
x_1 = rand(1000)*100
15
15
x_2 = rand(1000)*100
16
16
17
-
## create a signal that is the combination of two gaussian peaks plus a background
17
+
# create a signal that is the combination of two gaussian peaks plus a background
0 commit comments