From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 40/CH7/EX7.3/Exa_7_3.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 40/CH7/EX7.3/Exa_7_3.sce (limited to '40/CH7/EX7.3') diff --git a/40/CH7/EX7.3/Exa_7_3.sce b/40/CH7/EX7.3/Exa_7_3.sce new file mode 100755 index 000000000..83e357e78 --- /dev/null +++ b/40/CH7/EX7.3/Exa_7_3.sce @@ -0,0 +1,16 @@ +//Sampling Oscilloscope Concepts +fo=100;a=50; +s=(a-1)*fo/a; +B=100-s; +i=s/(2*B); +i=ceil(i); +disp(i,'The sampling frequency can at max divided by i'); +disp(s,2*B,'range of sampling rate is between s and 2*B'); +fo1=100; +a=50; +s1=(a-1)*fo1/a; +B1=400-4*s1; +j=s1/(2*B1); +j=ceil(j); +disp(j,'The sampling frequency can at max divided by j'); +disp(s1,2*B1,'range of sampling rate is between s1 and 2*B1'); \ No newline at end of file -- cgit