代码拉取完成,页面将自动刷新
同步操作将从 ShiboJiang/toto 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
%------------------------------------------------------------------------------
% Simulink scrip for retype stateflow patameters
% MATLAB version: R2017a
% Author: Shibo Jiang
% Time: 2017/11/28
% Version: 0.2
% Instructions: Change functions that can fix input/output - 0.2
%------------------------------------------------------------------------------
function fix_result = fix_stateflow_parameter_type()
paraModel = bdroot;
% Original matalb version is R2017a
% 检查Matlab版本是否为R2017a
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 all stateflow parameter
sf = sfroot;
all_sf_parameter = sf.find('-isa','Stateflow.Data');
j = 1;
if isempty(all_sf_parameter)
% report the result
fix_result = 'There is on stateflow parameter in this model.';
else
% define the input/output parameter's data type
% length_sf_par = length(all_sf_parameter);
% for i = 1:length_sf_par
% % whether the paremeter is input/outport or others
% sf_par_scope = all_sf_parameter(i).Scope;
% switch sf_par_scope
% case 'Input'
% set(all_sf_parameter(i),'DataType','Inherit: Same as Simulink');
% case 'Output'
% set(all_sf_parameter(i),'DataType','Inherit: Same as Simulink');
% otherwise
% other_sf_par(j) = all_sf_parameter(i);
% j = j + 1;
% end
% end
other_sf_par = all_sf_parameter;
end
% define other stateflow parameters datatype
if isempty(other_sf_par)
if isempty(fix_result)
% report the result
fix_result = 'Define stateflow parameters datatype successful';
else
% keep last fix_result
end
else
length_other_sf_par = length(other_sf_par);
for i = 1:length_other_sf_par
% get stateflow parameter's name
sf_par_name = other_sf_par(i).Name;
try
% get parameters datatype
sf_par_datatype = sf_par_name(end-2:end);
% translate the upper to lower
sf_par_datatype = lower(sf_par_datatype);
% calculate the data type config
switch sf_par_datatype
case '_u8'
sf_par_datatype_cfg = 'uint8';
case 'u16'
sf_par_datatype_cfg = 'uint16';
case 'u32'
sf_par_datatype_cfg = 'uint32';
case 'f32'
sf_par_datatype_cfg = 'single';
case 'f64'
sf_par_datatype_cfg = 'double';
case '_s8'
sf_par_datatype_cfg = 'int8';
case 's16'
sf_par_datatype_cfg = 'int16';
case 's32'
sf_par_datatype_cfg = 'int32';
case '_bl'
sf_par_datatype_cfg = 'boolean';
otherwise
sf_par_datatype_cfg = 'uint8';
end
% define the stateflow parameter data type
set(other_sf_par(i),'DataType',sf_par_datatype_cfg)
catch
end
end
fix_result = 'Define stateflow parameters datatype successful';
end
end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。