r****y 发帖数: 1437 | 1 If now you have (x, y, z)
(x, y, t)
matrices z and t are different a lot, so cannot use one colormap to cover
both of them.
Then how you can make a contour plot with one filled contours and one
contour-lines only?
If you just use
contourf(x, y, z);
hold all;
contour(x, y, t);
the second contour command will overwrite.
any good ideas? |
|