Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update fractals/julia_sets.py
Co-authored-by: John Law <johnlaw.po@gmail.com>
  • Loading branch information
alexn11 and poyea authored Sep 28, 2021
commit 2137469be0d2d92889c41005ea7ac022fdd5c42c
6 changes: 3 additions & 3 deletions fractals/julia_sets.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ def iterate_function(
>>> iterate_function(eval_quadratic_polynomial, 0, 3, numpy.array([0,1,2])).shape
(3,)
>>> numpy.round(iterate_function(eval_quadratic_polynomial,
0,
3,
numpy.array([0,1,2]))[0])
... 0,
... 3,
... numpy.array([0,1,2]))[0])
0j
>>> numpy.round(iterate_function(eval_quadratic_polynomial,
0,
Expand Down