1 Star 0 Fork 25

Charsly/toto_1

forked from ShiboJiang/toto 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
show_name_blocks.m 4.33 KB
一键复制 编辑 原始数据 按行查看 历史
ShiboJiang 提交于 2017-11-29 16:13 . 更新 show_name_blocks.m
%------------------------------------------------------------------------------
% Simulink scrip for show block names.
% MATLAB version: R2017a
% Author : Shibo Jiang
% Version : 0.2
% Time : 2017/11/29
% Instructions: the blocks include MinMax,UnitDelay,Sqrt,Merge,Product,Logic
% ,RelationalOperator,Switch,MultiPortSwitch,Goto,From
% ,Terminator,ModelReference - 0.1
% Fix bugs - 0.2
%------------------------------------------------------------------------------
function show_block_name_result = show_name_blocks()
paraModel = bdroot;
% Original matalb version is R2017a
% 检查Matlab版本是否为R202017a
CorrectVersion_win = '9.2.0.556344 (R2017a)'; % windows
CorrectVersion_linux = '9.2.0.538062 (R2017a)'; % linux
CurrentVersion = version;
if 1 ~= bitor(strcmp(CorrectVersion_win, CurrentVersion),...
strcmp(CorrectVersion_linux, CurrentVersion))
warning('Matlab version mismatch, this scrip should be used for Matlab R2017a');
end
% Original environment character encoding: GBK
% 脚本编码环境是否为GBK
% if ~strcmpi(get_param(0, 'CharacterEncoding'), 'GBK')
% warning('Simulink:EncodingUnMatched', 'The target character ...
% encoding (%s) is different from the original (%s).',...
% get_param(0, 'CharacterEncoding'), 'GBK');
% end
% find MinMax blocks
min_max_blocks = find_system(paraModel,'FindAll',...
'on','BlockType','MinMax');
% find UnitDelay blocks
uint_delay_blocks = find_system(paraModel,'FindAll',...
'on','BlockType','UnitDelay');
% find Sqrt blocks
sqrt_blocks = find_system(paraModel,'FindAll',...
'on','BlockType','Sqrt');
% find Merge blocks
merge_blocks = find_system(paraModel,'FindAll',...
'on','BlockType','Merge');
% find Product blocks
product_blocks = find_system(paraModel,'FindAll','on',...
'BlockType','Product');
% find Logic blocks
logic_blocks = find_system(paraModel,'FindAll',...
'on','BlockType','Logic');
% find RelationalOperator blocks
relational_operator_blocks = find_system(paraModel,'FindAll',...
'on','BlockType','RelationalOperator');
% find Switch blocks
% switch_blocks = find_system(paraModel,'FindAll',...
% 'on','BlockType','Switch');
% find MultiPortSwitch blocks
multi_switch_blocks = find_system(paraModel,'FindAll',...
'on','BlockType','MultiPortSwitch');
% find Goto blocks
goto_blocks = find_system(paraModel,'FindAll',...
'on','BlockType','Goto');
% find From blocks
from_blocks = find_system(paraModel,'FindAll','on',...
'BlockType','From');
% find Terminator blocks
terminator_blocks = find_system(paraModel,'FindAll',...
'on','BlockType','Terminator');
% find ModelReference blocks
model_reference_blocks = find_system(paraModel,'FindAll',...
'on','BlockType','ModelReference');
% find Switch blocks
switch_blocks = find_system(paraModel,'FindAll','on',...
'BlockType','Switch');
% all blocks which need hiding names
show_name_blocks = [min_max_blocks',uint_delay_blocks',sqrt_blocks',...
merge_blocks',product_blocks',logic_blocks'...
,relational_operator_blocks',switch_blocks',...
multi_switch_blocks',goto_blocks',from_blocks'...
,terminator_blocks',model_reference_blocks',...
switch_blocks'];
length_show_name_line = length(show_name_blocks);
for i = 1:length_show_name_line
try
set_param(show_name_blocks(i),'ShowName','on')
catch
% do nothing
end
end
% report configurate results
show_block_name_result = 'show block name successful';
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wujinyuwuchao/toto_1.git
git@gitee.com:wujinyuwuchao/toto_1.git
wujinyuwuchao
toto_1
toto_1
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385