Visually Represent a string of XY Coordinates

Jay Ache's icon

Hello,
I have a very simple task in theory, I'm attempting to plot a list of 1000 xy coordinates across a 128 by 128 plane. I've spent hours playing with plot~, function, and now lcd, but I can only seem to plot a single coordinate at a time instead of all the coordinates simultaneously.

Coordinate generating patch for reference.

Max Patch
Copy patch and select New From Clipboard in Max.

florian1947's icon

try jitter. Fill a jit.matrix with your data, and plot it to jit.pwindow

Jay Ache's icon

Ok good to know. Been reading a lot on jit.matrix since you replied. Should I be using jit.fill to plot these coordinates to the matrix? Definitely struggling to figure out how exactly to fill the matrix with my stream of xy data.

florian1947's icon

using setcell or setcell2d

Max Patch
Copy patch and select New From Clipboard in Max.

Jay Ache's icon

Thank you! I scaled the Y values from 0 to 127 to 127 to 0 and it works perfectly!