I have a 2D "heat map" or PDF that I need to recreate by random sampling. I.E. I have a 2D probability density map showing starting locations. I need to randomly choose starting locations with the same probability as the original PDF.
To do this, I think I need to first find the joint CDF (cumulative density function), then choose random uniform numbers to sample the CDF. That's where I get stuck.
How do I numerically find the joint CDF of my PDF? I tried doing a cumulative sum along both dimensions, but that didn't yield the correct result. My knowledge of statistics is failing me.
EDIT The heatmap/PDF is the form of [x,y,z], where Z is the intensity or probability at each x,y point.