Compare and merge two Simulink models

Visualize and optionally merge differences between two Simulink models.
336 descargas
Actualizado 14 abr 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');

Citar como

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

Compatibilidad con la versión de MATLAB
Se creó con R2014a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Verification, Validation, and Test en Help Center y MATLAB Answers.

Community Treasure Hunt

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

Start Hunting!

No se pueden descargar versiones que utilicen la rama predeterminada de GitHub

Versión Publicado Notas de la versión
1.4.0.0

Updated description

1.3.0.0

Updated description

1.0.0.0

Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.
Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.