I have a (numpy) matrix with three columns, the first two being the position and the third the value. I would like to plot this matrix. I tried to use plt.imshow(...) but the axis are then the indexes of my matrix and not the position.
How can I do that?
EDIT : my matrix is like that :
array([[ -0.00000000e+00, 0.00000000e+00, 9.72157349e+01],
[ -2.50000000e-02, 0.00000000e+00, 9.72157349e+01],
[ -5.00000000e-02, 0.00000000e+00, 9.72157349e+01],
...,
[ -2.42500000e+00, 8.28630000e-05, 9.72157349e+01],
[ -2.45000000e+00, 8.28630000e-05, 9.72157349e+01],
[ -2.47500000e+00, 8.28630000e-05, 9.72157349e+01]])
with the first column beiing the x-position, the second one being the y-position and the third the value at the point.