summaryrefslogtreecommitdiff
path: root/27/CH11/EX11.4.2/Example_11_4_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '27/CH11/EX11.4.2/Example_11_4_2.sce')
-rwxr-xr-x27/CH11/EX11.4.2/Example_11_4_2.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/27/CH11/EX11.4.2/Example_11_4_2.sce b/27/CH11/EX11.4.2/Example_11_4_2.sce
new file mode 100755
index 000000000..36a734467
--- /dev/null
+++ b/27/CH11/EX11.4.2/Example_11_4_2.sce
@@ -0,0 +1,19 @@
+//Example 11.4.2 Page 410
+//Non-Linear Dynamics and Chaos, First Indian Edition Print 2007
+//Steven H. Strogatz
+clear;
+clear;
+clc;
+close;
+
+// N(E) = minimum number of D-dimensional cubes of side E needed to cover S.
+
+n=poly(0,"n") //Defining polynomial in "n"
+Num = (n*log(8)) //Num. = Numerator
+Den = (n*log(3)) //Den. = Denominator
+disp("The box dimension is :")
+
+d=(Num)/(Den) //d = Box Dimension.
+
+
+//End of Example. \ No newline at end of file