summaryrefslogtreecommitdiff
path: root/27/CH10/EX10.6.1/Example_10_6_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '27/CH10/EX10.6.1/Example_10_6_1.sce')
-rwxr-xr-x27/CH10/EX10.6.1/Example_10_6_1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/27/CH10/EX10.6.1/Example_10_6_1.sce b/27/CH10/EX10.6.1/Example_10_6_1.sce
new file mode 100755
index 000000000..f31809362
--- /dev/null
+++ b/27/CH10/EX10.6.1/Example_10_6_1.sce
@@ -0,0 +1,15 @@
+//Example 10.6.1 Page 369
+//Non-Linear Dynamics and Chaos, First Indian Edition Print 2007
+//Steven H. Strogatz
+clear;
+clear;
+clc;
+close;
+set(gca(),"auto_clear","off") //hold on
+
+//Sine Map
+r=0.5;
+for xn=0:0.01:1
+ xn_one=r*sin(%pi*xn);
+ plot2d(xn,xn_one,style=-3)
+end