Skip to content
Snippets Groups Projects
Commit 0fee2505 authored by Cristian Galperti's avatar Cristian Galperti
Browse files

Merge branch 'operation' of gitlab.epfl.ch:spc/tcv/scd/rtccode into operation

parents 0cf9f5df 8cf22f3c
No related branches found
No related tags found
No related merge requests found
...@@ -7,13 +7,21 @@ ...@@ -7,13 +7,21 @@
% the function asks before removing any logging % the function asks before removing any logging
% unless the additional parameter couple 'force', 1 % unless the additional parameter couple 'force', 1
% is given in varargin % is given in varargin
%
% it seems that the Simulink Data Inspector
% is resilient to this changes
% try this:
% 1) Simulink.sdi.clear
% 2) restart Matlab
% 3) Delete signals manually there
function disablesignalslog(topmodelname,varargin) function disablesignalslog(topmodelname,varargin)
P=inputParser; P=inputParser;
P.addParameter('force',0); P.addParameter('force',0);
P.parse(varargin{:}); P.parse(varargin{:});
force=P.Result.force; force=P.Results.force;
disp('Getting mdlrefs info ...'); disp('Getting mdlrefs info ...');
[models,blocks]=find_mdlrefs(topmodelname); [models,blocks]=find_mdlrefs(topmodelname);
......
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