I am having difficulty producing a contour plot from two matrices;
I have one matrix A
9×8 with values (an amount of something), and another matrix 9×8 B
where each entry corresponds to a location of an entry in A
.
The issue is that the entries do not fall on a rectangular grid.
I'm trying to create a contour plot of the Y-Axis values (from matrix A
), based on the X-axis values from matrix B
.
I've tried meshgrid
(based on the x and y ranges for B
), however the values in matrix B
are not evenly spaced;
Any help would be greatly appreciated!