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 /876/CH8/EX8.7 | |
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 '876/CH8/EX8.7')
-rwxr-xr-x | 876/CH8/EX8.7/Ex8_7.sce | 15 | ||||
-rwxr-xr-x | 876/CH8/EX8.7/Ex8_7.txt | 7 | ||||
-rwxr-xr-x | 876/CH8/EX8.7/Ex8_7t.txt | 15 |
3 files changed, 37 insertions, 0 deletions
diff --git a/876/CH8/EX8.7/Ex8_7.sce b/876/CH8/EX8.7/Ex8_7.sce new file mode 100755 index 000000000..b31d94cfa --- /dev/null +++ b/876/CH8/EX8.7/Ex8_7.sce @@ -0,0 +1,15 @@ +//caption:Find peak amplitude and frequency of the signal
+//Ex8.7
+clc
+clear
+close
+V=0.5//vertical attenuator(in V/division)
+Vo=10^-6//horizontal attenuator(in second/division)
+n=6//number of divisions on vertical axis
+N=5//number of division for complete one cycle
+V1=V*n
+Vp=V1/2
+disp(Vp,'peak amplitude(in V)=')
+T=Vo*N
+f=1/T
+disp(f,'frequency of the signal(in Hz)=')
\ No newline at end of file diff --git a/876/CH8/EX8.7/Ex8_7.txt b/876/CH8/EX8.7/Ex8_7.txt new file mode 100755 index 000000000..84b8c049f --- /dev/null +++ b/876/CH8/EX8.7/Ex8_7.txt @@ -0,0 +1,7 @@ + peak amplitude(in V)=
+
+ 1.5
+
+ frequency of the signal(in Hz)=
+
+ 200000.
\ No newline at end of file diff --git a/876/CH8/EX8.7/Ex8_7t.txt b/876/CH8/EX8.7/Ex8_7t.txt new file mode 100755 index 000000000..b31d94cfa --- /dev/null +++ b/876/CH8/EX8.7/Ex8_7t.txt @@ -0,0 +1,15 @@ +//caption:Find peak amplitude and frequency of the signal
+//Ex8.7
+clc
+clear
+close
+V=0.5//vertical attenuator(in V/division)
+Vo=10^-6//horizontal attenuator(in second/division)
+n=6//number of divisions on vertical axis
+N=5//number of division for complete one cycle
+V1=V*n
+Vp=V1/2
+disp(Vp,'peak amplitude(in V)=')
+T=Vo*N
+f=1/T
+disp(f,'frequency of the signal(in Hz)=')
\ No newline at end of file |