diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /40/CH7/EX7.3 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '40/CH7/EX7.3')
-rwxr-xr-x | 40/CH7/EX7.3/Exa_7_3.sce | 16 |
1 files changed, 16 insertions, 0 deletions
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 |