summaryrefslogtreecommitdiff
path: root/1739/CH2/EX2.23/Exa2_23.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1739/CH2/EX2.23/Exa2_23.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1739/CH2/EX2.23/Exa2_23.sce')
-rwxr-xr-x1739/CH2/EX2.23/Exa2_23.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1739/CH2/EX2.23/Exa2_23.sce b/1739/CH2/EX2.23/Exa2_23.sce
new file mode 100755
index 000000000..5376f53e4
--- /dev/null
+++ b/1739/CH2/EX2.23/Exa2_23.sce
@@ -0,0 +1,12 @@
+//Exa 2.23
+clc;
+clear;
+close;
+//Given data :
+format('v',5);
+alfa=1.9;
+//characteristic index profile
+//Formula : v=2.405*sqrt[(alfa+2)/alfa]
+v=2.405*sqrt((alfa+2)/alfa);//unitless
+disp(v,"Value of v : ");
+//Note : Answer in the book is not accurate. \ No newline at end of file