summaryrefslogtreecommitdiff
path: root/27/CH10/EX10.6.1/Example_10_6_1.sce
blob: f31809362a329d999302b0d085ae3089bd72adb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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