Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jcla1/ulam

Given a size and x,y coords will return the value from a number spiral.
https://github.com/jcla1/ulam

Last synced: about 2 months ago
JSON representation

Given a size and x,y coords will return the value from a number spiral.

Awesome Lists containing this project

README

        

ulam
====

Spiral Matrix function for Ulam Spirals

The main function ulam([x,y], dimention) generates a spiral matrix of width and height -> dimention, and tells you what the value
is at position x, y in that matrix. Note that 1,1 is in the top left corner of a matrix.
See [Ulam Spiral rectangular grid construction] (http://en.wikipedia.org/wiki/Ulam_spiral#Construction) for more
details.

This was mostly a mental exercise.