Configure Simulink to ask for new model version when saving the model
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ansh Gandhi
le 16 Oct 2020
Commenté : Ansh Gandhi
le 3 Nov 2020
Currently, Simulink can be configured to prompt for a comment each time a model is saved.
I do not want it to increment the version number on its own, so I have removed the AutoIncrement macro in the History section of Model properties.
Although, I would like to have the option of choosing the model version number along with the message each time when saving the model if possible so as to increment both major and minor releases at my own pace, conveniently, and without forgetting.
Currently using MATLAB 2017b
Thanks for the help!
0 commentaires
Réponse acceptée
Urmila Rajpurohith
le 3 Nov 2020
This might be possible using model callbacks, but it would have to be added to every model manually, or to the default Simulink template.
EX:
open the model
set_param(bdroot, 'presavefcn', 'str=inputdlg;set_param(bdroot, ''ModelVersionFormat'', str{1})')
Plus de réponses (1)
Urmila Rajpurohith
le 23 Oct 2020
Hi
If you want to change the model version you can use "set_param" function before saving the model.
for example if you want to change the model version to 1.10, then you can use
set_param(modelname,'Modelversionformat','1.10')
Hope this helps!
3 commentaires
Urmila Rajpurohith
le 30 Oct 2020
Hi
Can you tell us more details about why you require this workflow?
because many people would use source control tool features to do this kind of tracking rather than depending on the user typing in information on each model save.
Voir également
Catégories
En savoir plus sur Programmatic Model Editing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!