Matlab作图时各种奇怪的问题解决(随时更新)

来源:互联网 发布:淘宝app怎么收藏店铺 编辑:程序博客网 时间:2024/05/17 01:17

Q:在用mesh显示三维曲面的时候,若加了colorbar满屏都是数字乱码

A:加一个set限定就好了~

mesh(1:width, 1:height, double(Delta_x2));hold on; colorbar;set(gcf, 'renderer', 'zbuffer');

0 0