Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Fractals > Two new types o...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 1 of 1 Topic 211 of 236
Post > Topic >>

Two new types of chaotic sequence

by Roger Bagula <rlbagula@[EMAIL PROTECTED] > Jun 29, 2008 at 10:20 AM

http://www.geocities.com/rlbagulatftn/chaotic_steptonoise.gif
Two new types of chaotic sequence plotted against each other.

Mathematica:
Clear[a, f, b, c, g]
(* fractal noise chaotic sequence*)
f[0] = 1; f[1] = 0; f[1] = 1;
f[n_] := f[n] = f[n - f[n - 1]] + f[Floor[2*n/3]]
(* Cantor like fractal stair step chaotic sequence*)
g[0] = 1; g[1] = 0; g[1] = 1;
g[n_] := g[n] = g[Floor[2*n/3]] + g[Floor[n/3]]
ListPlot[Table[{f[n], g[n]}, {n, 0, 200}], PlotJoined -> True]
 




 1 Posts in Topic:
Two new types of chaotic sequence
Roger Bagula <rlbagula  2008-06-29 10:20:32 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Fri Nov 21 11:13:36 CST 2008.