From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1739/CH2/EX2.23/Exa2_23.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 1739/CH2/EX2.23/Exa2_23.sce (limited to '1739/CH2/EX2.23/Exa2_23.sce') 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 -- cgit