How do i add a title and color bar
4 ビュー (過去 30 日間)
古いコメントを表示
How do I add a title to this? I thought that I did but it is not showing up on the graph. As well as a color bar and name the x and y axis, and turn off the grid mesh.
pause(.01);
hold on
title('PEC Boundary Condtion')
colorbar;
hold off
grid off
pcolor(Hz)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/607895/image.png)
0 件のコメント
採用された回答
KSSV
2021 年 5 月 5 日
pause(.01);
hold on
grid off
pcolor(Hz)
title('PEC Boundary Condtion')
colorbar;
hold off
drawnow
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!