Revision: 31256
                            
                                                            
                                    
                                        
Initial Code
                                    
                                    
                                                            
                                    
                                        
Initial URL
                                    
                                    
                                
                                                            
                                    
                                        
Initial Description
                                    
                                    
                                
                                                            
                                    
                                        
Initial Title
                                    
                                    
                                                            
                                    
                                        
Initial Tags
                                    
                                    
                                
                                                            
                                    
                                        
Initial Language
                                    
                                    
                                                    
                        at September 1, 2010 23:46 by clementi
                            
                            Initial Code
def logistic_map(x0, r, n): if n == 0: return x0 xprev = logistic_map(x0, r, n - 1) return r * xprev * (1 - xprev)
Initial URL
Initial Description
Initial Title
The Logistic Map
Initial Tags
Initial Language
Python