Logistic Map Showing Period

Logistic Map Showing Period preview image

1 collaborator

Default-person Do Trong Thanh (Author)

Tags

(This model has yet to be categorized with any tags)
Visible to everyone | Changeable by everyone
Model was written in NetLogo 5.0.4 • Viewed 415 times • Downloaded 38 times • Run 0 times
Download the 'Logistic Map Showing Period' modelDownload this modelEmbed this model

Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)


Comments and Questions

Please start the discussion about this model! (You'll first need to log in.)

Click to Run Model

;;;;;;;;;;;;;;;;;;;;;;
;; setup procedures ;;
;;;;;;;;;;;;;;;;;;;;;;

;; sets up the patches and creates turtles

to setup
  clear-all
  setup-turtles
  reset-ticks
end 

;; determines the number of turtles

to setup-turtles
  create-turtles 1
  [
    setxy 0 starting-value
  ]
end 

;;;;;;;;;;;;;;;;;;;;;;;;
;; runtime procedures ;;
;;;;;;;;;;;;;;;;;;;;;;;;

to go
  ask turtles
  [
     set ycor (r * ycor * (1 - ycor))
     plot ycor
  ]
  tick
end 

There is only one version of this model, created over 10 years ago by Do Trong Thanh.

Attached files

File Type Description Last updated
Logistic Map Showing Period.png preview Preview over 10 years ago, by Do Trong Thanh Download

This model does not have any ancestors.

This model does not have any descendants.