Reputation: 645
I have several dataset matrices x
, y
, andz
, where z
contains values at the positions x,y
showing shifted (overlapping) parts of the same picture. x and y are rectangularly centered around different center positions for each dataset.
How can I combine the data in one plot using pcolor
or similar? Note that it should be a rectangular plot in the end, but that not all data points are given due to the shift.
Upvotes: 1
Views: 135
Reputation: 645
I now solved my own question by using the command hold on
, which makes it possible to plot several times into the same figure. You just have to run it in between two plot commands.
Upvotes: 1