blob: 82ba51734d6636085aa6cddb13a80750bf8641d1 (
plain)
1
2
3
4
5
6
7
8
|
//Scilab Code for Example 6.8 of Signals and systems by
//P.Ramakrishna Rao
//Sampling Frequency of BPS
clc;
clear;
disp('Maximum Frequency component present: 25 kHz');
fs=2*25000;
disp(fs,'Minimum Sampling Frequency to avoid distortion is:(Hz)');
|