Showing 11 result(s)

Big Page on Matrices

What is a Matrix?? A matrix is a way of showing information efficiently. It is a rectangular array of numbers. Matrices have two dimensions: the number of rows (usually denoted as as m) and the number of columns (denoted as n). The order of a matrix describes it’s size. Operations on Matrices Addition and Subtraction …

Decision Maths 1 Revision

Sorting Algorithms Bubble Sort Numbers are sorted into ascending order by comparing pairs of numbers. If the number on the left is larger than the number on the right, the two numbers are swapped. If the number on the right is larger, everything is kept the same. This process is repeated until the list is …

Mandlebrot

Mandelbrot Set Python

First let me get out the way the glaring problem of Python being a terrible language to make a Mandelbrot Set generator in. Mandelbrot Generators need speed to make the best possible images with the highest resolutions. Python, compared to a language such as C – which would be a much better language to program …