I'm a bit new to matlab, so please bear with me, I'm not 100% sure if what I want to do can actually be done.
So, I have an array
coords = zeros(2000, 2);
and another array representing the actual coordinates
pixCoords = [35 200] %dummy values
How can I/ what is the syntax to assign pixCoords to the (1,1) position of coords, such that when I type in coords(1,1) the console will return 35 200?
Eventually, each column of coords will have two different sets of coordinates in them.
Thanks!