blob: 417e3318bf18ba4297c412cfd5b53fc60d8a799f (
plain)
1
2
3
4
5
6
7
|
// 4.11
clc;
disp('for good quality data the sampling rate should be at least 5 times the data frequency for one channel')
channel=5;
f=50;
sampling_rate=5*channel*f;
printf("\nsampling rate =%.1f samples per second",sampling_rate)
|