Error: A configuration set reference does not allow writing to parameters in the source configuration set
Afficher commentaires plus anciens
While using Parameter Estimation tool, I get the following error

I do understand it is related to the configuration parameter setting (i.e imo one of the parameter is set false in the source configuration set).
Am I right in my understanding? If yes, Would it be possible to point me in the right direction in terms of which parameters I should look into?
The simulink model is quite complex in nature and is run in Fixedstep (discrete) mode.
Regards
Biswanath Bose
Réponses (1)
Chidvi Modala
le 29 Août 2019
0 votes
It seems like the model was using a "configuration reference" rather than storing its configuration internally. You might have used several models which share same configuration set. It is saved in a central place and all the updates apply immediately to all models.
Try setting the configuration parameter as below:
configurationSettings.set_param('Name', 'value');
‘configurationSettings’ should be a variable in your workspace and the variable’s name should match Referenced configuration set name in the Model Explorer.
Catégories
En savoir plus sur Parameter Estimation dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!