Members
max_val
A gloabl vairable that stores the maximum value of the optimsed function
that is displayed on the screen
min_val
A gloabl vairable that stores the minimum value of the optimsed function
that is displayed on the screen
surface
A gloabl vairable that stores a 2d array representing the function to be
optimised
the_swarm
A gloabl vairable that stores the optimser object
x_num
A gloabl vairable that stores the number of pixels in the x direction
x_step
A gloabl vairable that stores the number step size between pixels in the
x direction
y_num
A gloabl vairable that stores the number of pixels in the y direction
y_step
A gloabl vairable that stores the number step size between pixels in the
y direction
Methods
draw()
p5.js draw function, used to draw the color plot of the surface and to
evaluate the next generation for the swarm.
func(x, y) → {number}
The function that is going to optimised by the swarm
Parameters:
Name | Type | Description |
---|---|---|
x |
number | The x coordinate at which the function will be evaluated |
y |
number | The y coordinate at which the function will be evaluated |
Returns:
A sinlge number providing the value of the function at
x and y
- Type
- number
setup()
p5.js setup function, used to create a canvas and instantiate the "the_swarm"
variable.