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 /2045/CH9/EX9.1/Ex9_1.sce | |
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 '2045/CH9/EX9.1/Ex9_1.sce')
-rwxr-xr-x | 2045/CH9/EX9.1/Ex9_1.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2045/CH9/EX9.1/Ex9_1.sce b/2045/CH9/EX9.1/Ex9_1.sce new file mode 100755 index 000000000..4a676521a --- /dev/null +++ b/2045/CH9/EX9.1/Ex9_1.sce @@ -0,0 +1,20 @@ +//pagenumber 424 example 1
+clear
+//(1) frequency
+freque=100*10^3*sqrt(2^(1/3)-(1));
+frequ2=100*10^3/sqrt(2^(1/3)-(1));
+disp("frequency1 = "+string((freque))+"hertz");
+disp("frequency2 = "+string((frequ2))+"hertz");
+//(2)frequency
+freq11=100*10^6;//hertz
+freq12=150*10^6;//hertz
+freq13=200*10^6;//hertz
+freq21=100*10^3;//hertz
+freq22=150*10^3;//hertz
+freq23=200*10^3;//hertz
+frequ1=sqrt(freq11^2+freq12^2+freq13^2);
+disp("frequency = "+string((frequ1))+"hertz");//correction in the book 269.25mega hertz
+frequ1=1/sqrt((1/(freq21^2))+(1/(freq22^2))+(1/(freq23^2)));
+
+
+disp("frequency = "+string((frequ1))+"hertz");//correction in the book
|