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 /1367/CH2/EX2.6 | |
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 '1367/CH2/EX2.6')
-rwxr-xr-x | 1367/CH2/EX2.6/2_6.sce | 14 | ||||
-rwxr-xr-x | 1367/CH2/EX2.6/ex_2_6_r.txt | 16 |
2 files changed, 30 insertions, 0 deletions
diff --git a/1367/CH2/EX2.6/2_6.sce b/1367/CH2/EX2.6/2_6.sce new file mode 100755 index 000000000..1dff65f9b --- /dev/null +++ b/1367/CH2/EX2.6/2_6.sce @@ -0,0 +1,14 @@ +//Find dimensionsof elliptical locus
+//Ex:2.6
+clc;
+clear;
+close;
+n=4;//fourth orbit
+a=(0+1)/n;//for s suborbit
+disp(a,"For s suborbit b/a = ");
+b=(1+1)/n;//for p suborbit
+disp(b,"For p suborbit b/a = ");
+c=(2+1)/n;//for d suborbit
+disp(c,"For d suborbit b/a = ");
+d=(3+1)/n;//for f suborbit
+disp(d,"For f suborbit b/a = ");
\ No newline at end of file diff --git a/1367/CH2/EX2.6/ex_2_6_r.txt b/1367/CH2/EX2.6/ex_2_6_r.txt new file mode 100755 index 000000000..82e23af3a --- /dev/null +++ b/1367/CH2/EX2.6/ex_2_6_r.txt @@ -0,0 +1,16 @@ +For s suborbit b/a =
+
+ 0.25
+
+ For p suborbit b/a =
+
+ 0.5
+
+ For d suborbit b/a =
+
+ 0.75
+
+ For f suborbit b/a =
+
+ 1.
+
\ No newline at end of file |