Global

Members

max_val

A gloabl vairable that stores the maximum value of the optimsed function that is displayed on the screen
Source:

min_val

A gloabl vairable that stores the minimum value of the optimsed function that is displayed on the screen
Source:

surface

A gloabl vairable that stores a 2d array representing the function to be optimised
Source:

the_swarm

A gloabl vairable that stores the optimser object
Source:

x_num

A gloabl vairable that stores the number of pixels in the x direction
Source:

x_step

A gloabl vairable that stores the number step size between pixels in the x direction
Source:

y_num

A gloabl vairable that stores the number of pixels in the y direction
Source:

y_step

A gloabl vairable that stores the number step size between pixels in the y direction
Source:

Methods

draw()

p5.js draw function, used to draw the color plot of the surface and to evaluate the next generation for the swarm.
Source:

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
Source:
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.
Source:

Documentation generated by JSDoc 3.6.3 on Wed May 05 2021 14:28:08 GMT+0100 (BST)