-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.Expr
24 lines (24 loc) · 923 Bytes
/
default.Expr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[Expressions]
NumOfGroups=2
ExprsInGroup1=5
GroupName1=Waves
Name1.1=Sine Wave
Expr1.1=sin(2*pi*f*t)
Comment1.1=Sine wave, f is frequency in Hz
Name1.2=Cosine Wave
Expr1.2=cos(2*pi*f*t)
Comment1.2=Cosine wave, f is frequency in Hz
Name1.3=Square Wave
Expr1.3=(int(2.*T*f)&1)-0.5
Comment1.3=Square wave, amplitude 50%, duty time 50%, f is frequency in Hz
Name1.4=Full Linear Sweep
Expr1.4=sin(pi*t * F *t / dt * 0.5)
Comment1.4=Full Sweep to sample rate / 2; frequency linearly changes with time
Name1.5=Full Exponential Sweep
Expr1.5=sin(pi*F * dt / 6.9077552 * exp(6.9077552 *(t-dt)/dt))
Comment1.5=Full Sweep to sample rate / 2; frequency exponentially changes with time, from Fmax/1000 to Fmax
ExprsInGroup2=1
GroupName2=Noises
Name2.1=Gaussian White Noise
Expr2.1=(0.408248290463863*(noise+noise+noise+noise+noise+noise))
Comment2.1=Gaussian white noise approximation, dispersion=sqrt(1/3); add more terms if necessary