Compare and merge two Simulink models

Visualize and optionally merge differences between two Simulink models.
361 download
Aggiornato 14 apr 2024

This is a simple tool to help visualize and merge differences between two Simulink models. I am unaware of other non-commercial tools to accomplish this task.
UNIQUE = mergeDiff(OLDMODEL, NEWMODEL{, MERGE=false}) compares block names and dialog parameters from two similar models. The differences are reported in a format similar to the unified diff format.
If MERGE=true then OLDMODEL will be updated with parameter values and missing blocks from NEWMODEL. The merged model requires manual editing to complete the merge process. The modified blocks in the merged model are color coded upon completion. This function does not examine connecting lines so the user should review and connect these colored blocks manually to complete the merge.
White - Block is unchanged
Green - Block was missing from OLDMODEL and was copied from NEWMODEL
Orange - Block's parameters were updated
Red - Block is missing from NEWMODEL
Yellow - Subsystem contains modifications

This function does not examine connecting lines. The user should review and connect these colored blocks manually to complete the merge.

Returns UNIQUE names of blocks found only in OLDMODEL.

EXAMPLE
% List differences between two Simulink models:
open_system('oldmodel');
open_system('newmodel');
mergeDiff('oldmodel', 'newmodel');

Cita come

Carl Osterwisch (2025). Compare and merge two Simulink models (https://github.com/costerwi/simulink-mergeDiff), GitHub. Recuperato .

Compatibilità della release di MATLAB
Creato con R2014a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Verification, Validation, and Test in Help Center e MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Le versioni che utilizzano il ramo predefinito di GitHub non possono essere scaricate

Versione Pubblicato Note della release
1.4.0.0

Updated description

1.3.0.0

Updated description

1.0.0.0

Per visualizzare o segnalare problemi su questo componente aggiuntivo di GitHub, visita GitHub Repository.
Per visualizzare o segnalare problemi su questo componente aggiuntivo di GitHub, visita GitHub Repository.