Simulink scope autoscale
Mostrar comentarios más antiguos
Hi everyone, i was wondering if there is a way for a scope i use in a simulink model to automaticaly autoscale. Maybe from adding a code to its startfunction???
Respuesta aceptada
Más respuestas (5)
Ilham Hardy
el 17 de En. de 2012
0 votos
By clicking the binocular button on the scope, perhaps?
2 comentarios
Raldi
el 17 de En. de 2012
Mandip Regmi
el 20 de Mayo de 2020
I did not find the binocular button too
TAB
el 18 de En. de 2012
Add below piece of code in your 'StopFcn' callback function. When the simulation is completed, it will open and autoscale all the scopes in the model.
[EDITED TO WORK FOR MULTIPLE INPUT SCOPE]
bh=find_system(gcs,'FindAll','on','BlockType','Scope');
for x=1:length(bh) %close all scope
set_param(bh(x),'Open','off');
end
for x=1:length(bh)
set_param(bh(x),'Open','on');
fh=gcf;
AxesInScope = findall(fh,'type','axes');
for y=1:length(AxesInScope)
set(fh,'CurrentAxes',AxesInScope(y));
xlim('auto');
ylim('auto');
end
end
6 comentarios
Raldi
el 18 de En. de 2012
Ilham Hardy
el 18 de En. de 2012
On your simulink model goto: File>>Model properties>>Callbacks>>StopFcn
TAB
el 18 de En. de 2012
You can insert this code in the 'StopFcn' callback function of model.
[1] Open Your Model
[2] Goto File -> Model Properties
[3] Click on callback Tab in Model Properties window
[4] Select 'StopFun' on left side of window
[5] Paste the above code in Text box.
The code will be executed when the simulation stops (after completion or using stop button).
Once simulation is stoped, all the scopes in model will be opened and autoscaled automatically.
Raldi
el 18 de En. de 2012
Raldi
el 18 de En. de 2012
TAB
el 18 de En. de 2012
As your scope is reading 2 inputs, previous code was autoscaling only one graph keeping other as it is.
I have updated the code so that it can work for multiple input scopes.
Andreas Goser
el 18 de En. de 2012
0 votos
Typically, when users describe this, they are happy with the Time Scope Block from DSP System Toolbox. Here is the link to the documentation.
Especially, as Raldi is working at a university in the field of Signal Processing, this product should be available. Note that previous versions used different names like Signal Processing Blockset or DSP Blockset.
4 comentarios
Raldi
el 18 de En. de 2012
Andreas Goser
el 18 de En. de 2012
Well, then you might need to write your own block (s-function).
Raldi
el 18 de En. de 2012
Raldi
el 18 de En. de 2012
Mingli ZHU
el 22 de Abr. de 2021
Editada: Mingli ZHU
el 22 de Abr. de 2021
0 votos
set(0, 'showhiddenhandles', 'on')
%current graphic object
scope=gcf;
%find Autoscale object
scale=findobj(gcf, 'Tag', 'uimgr.uisplittool_Autoscale');
%click this object
feval(get(scale,'Callback'),scale,[]);
%find PrintToFigure Menu
fig=findobj(gcf, 'Tag', 'uimgr.uimenu_PrintToFigure');
%Click this Menu
feval(get(fig,'Callback'),fig,[]);
set(0, 'showhiddenhandles', 'off')
Jessy Mathault
el 27 de Ag. de 2021
This function:
simscope('ScopeBar', 'ActionIcon', 'Find', scope(i))
Doesn't seem to be supported anymore in MATLAB 2020b.
This seems to work:
allAxes = findall(gcf,'type','axes');
for x = 1:numel(allAxes)
axis(allAxes(x), 'auto y');
axis(allAxes(x), 'auto x');
end
Categorías
Más información sobre Interactive Model Editing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!