If your symmetry is in the left-right direction, then do:
contour(V(:,end:-1:1),500);
However, that leaves the two images overlapping. To avoid this you will need to use the
contour(X,Y,Z)
form appropriately. That is, reverse the Z second index as above, and shift X to one side in the appropriate manner.