Skip to content
Snippets Groups Projects
Commit 27f2d524 authored by Federico Felici's avatar Federico Felici
Browse files

update SCDalgo_template

parent 3f06705f
No related branches found
No related tags found
No related merge requests found
function SCDalgo_template_inBus()
% SCDALGO_TEMPLATE_INBUS initializes a set of bus objects in the MATLAB base workspace
% Bus object: SCDalgo_template_inBus
clear elems;
elems(1) = Simulink.BusElement;
......@@ -22,5 +19,3 @@ SCDalgo_template_inBus.DataScope = 'Auto';
SCDalgo_template_inBus.Alignment = -1;
SCDalgo_template_inBus.Elements = elems;
clear elems;
assignin('base','SCDalgo_template_inBus', SCDalgo_template_inBus);
function SCDalgo_template_outBus()
% SCDalgo_template_outBUS initializes a set of bus objects in the MATLAB base workspace
% Bus object: SCDalgo_template_outBus
clear elems;
elems(1) = Simulink.BusElement;
......@@ -22,5 +19,3 @@ SCDalgo_template_outBus.DataScope = 'Auto';
SCDalgo_template_outBus.Alignment = -1;
SCDalgo_template_outBus.Elements = elems;
clear elems;
assignin('base','SCDalgo_template_outBus', SCDalgo_template_outBus);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment