本文介绍了Simulink中的X-Y图块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在simulink中编辑x-y图形块以显示或添加以下内容;
How an x-y graph block in simulink can be edit to show or add the following;
1-主标题,2-并网3- X和Y标签.
1- Main title,2- Grid on,3- X and Y labels.
推荐答案
您需要打开hidden handles属性才能修改这些数字.例如,要更改标题,
You need to turn on hidden handles property to modify these figures. For example, to change the title you should do,
cv = get(0,'showhiddenhandles');
set(0,'showhiddenhandles','on');
title('my title');
set(0,'showhiddenhandles', cv); % Reset original value
这篇关于Simulink中的X-Y图块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!