{"id":16296862,"url":"https://github.com/windomz/logistic-map","last_synced_at":"2025-04-09T13:34:03.146Z","repository":{"id":57613219,"uuid":"97396833","full_name":"WindomZ/logistic-map","owner":"WindomZ","description":"Logistic map algorithm and its improved algorithms.","archived":false,"fork":false,"pushed_at":"2017-07-26T10:32:06.000Z","size":12,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-15T07:40:42.429Z","etag":null,"topics":["logistic-map"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WindomZ.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-07-16T16:43:51.000Z","updated_at":"2017-07-17T14:40:28.000Z","dependencies_parsed_at":"2022-09-13T15:50:44.985Z","dependency_job_id":null,"html_url":"https://github.com/WindomZ/logistic-map","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WindomZ%2Flogistic-map","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WindomZ%2Flogistic-map/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WindomZ%2Flogistic-map/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WindomZ%2Flogistic-map/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WindomZ","download_url":"https://codeload.github.com/WindomZ/logistic-map/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248049247,"owners_count":21039188,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["logistic-map"],"created_at":"2024-10-10T20:24:12.788Z","updated_at":"2025-04-09T13:34:03.118Z","avatar_url":"https://github.com/WindomZ.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# logistic-map\n\n\u003e Logistic map algorithm and its improved algorithms.\n\n[![Build Status](https://travis-ci.org/WindomZ/logistic-map.svg?branch=master)](https://travis-ci.org/WindomZ/logistic-map)\n[![Coverage Status](https://coveralls.io/repos/github/WindomZ/logistic-map/badge.svg?branch=master)](https://coveralls.io/github/WindomZ/logistic-map?branch=master)\n[![Go Report Card](https://goreportcard.com/badge/github.com/WindomZ/logistic-map)](https://goreportcard.com/report/github.com/WindomZ/logistic-map)\n[![License](https://img.shields.io/badge/license-MIT-green.svg)](https://opensource.org/licenses/MIT)\n\nThe [logistic map](https://en.wikipedia.org/wiki/Logistic_map) is a polynomial mapping (equivalently, recurrence relation) of degree 2, \noften cited as an archetypal example of how complex, chaotic behaviour can arise from very simple non-linear dynamical equations.\n\n## Usage\n\n[![GoDoc](https://godoc.org/github.com/WindomZ/logistic-map?status.svg)](https://godoc.org/github.com/WindomZ/logistic-map)\n\n### Logistic map\n\n```go\nimport \"github.com/WindomZ/logistic-map\"\n\n// Parameter u=3.999, x=0.2 and 5000 logistic map iterates.\nresult := logistic.LogisticMap(3.999, 0.2, 5000)\n// len(result) == 5001', include result[0] == x\n...\n```\n\n### Improved logistic map\n\nAutomatically adjust parameter `u` in `(3.569945673, 4)`.\n\n```go\nimport \"github.com/WindomZ/logistic-map\"\n\n// Parameter x=0.2 and 5000 logistic map iterates.\n// Regulation amplification factor is 100.\nresult := logistic.LogisticImprovedMap(0.2, 100, 5000)\n// len(result) == 5001', include result[0] == x\n...\n```\n\n## Reference\n\n[Wiki](https://en.wikipedia.org/wiki/Logistic_map)\n\n## License\n\n[MIT](https://github.com/WindomZ/logistic-map/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwindomz%2Flogistic-map","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwindomz%2Flogistic-map","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwindomz%2Flogistic-map/lists"}