How to ensure all of our models and subsystems are centered on the screen and are at 100% zoom?

Illustration
trandura_sneha - 2021-10-07T13:02:09+00:00
Question: How to ensure all of our models and subsystems are centered on the screen and are at 100% zoom?

Hello, We have been trying to get a reliable and quick way to ensure all of our models and subsystems are centred on the screen and are at 100% zoom.  

Expert Answer

Profile picture of Neeta Dsouza Neeta Dsouza answered . 2025-11-20

The following script ensures ensure all of your models and subsystems are centered on the screen and are at 100% zoom:
 
subSys = find_system( modelname, 'BlockType', 'SubSystem' );
 
for ss=1:length(subSys)
 
    subs_h = get_param( subSys{ss}, 'handle' );

    open_system( subs_h, 'tab' );

    set_param( subSys{ss}, 'ZoomFactor', 'FitSystem' );

    set_param( subSys{ss}, 'ZoomFactor', '100' );

    close_system( subs_h, 'tab' );
end
As of R2018b there is no better workflow than opening a script and using the "set_param" command to center and zoom individual subsystems.
 


Not satisfied with the answer ?? ASK NOW

Get a Free Consultation or a Sample Assignment Review!