a matlab plotting question# Computation - 科学计算
r*y
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?
(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?