Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 MATLAB 中将等高线图输出的默认白色为零更改为不同的颜色?
longitude = [80 82 95] latitude = [30 32 35] temp = [0 0 0; 0 0 0; 0 0 0] contourf(longitude,latitude,temp)
谢谢,
阿曼达
关键似乎是图形属性中的“渲染器/渲染”模式。它必须设置为“painters”或“zbuffer”。我不是专家,我不明白如何默认设置它。我通过图形编辑器手动更改它(单击外部图形框架->更多属性->渲染器)然后我从菜单栏中单击“生成代码”以创建一个以相同方式自动创建所有图的功能.