Error: A configuration set reference does not allow writing to parameters in the source configuration set

26 views (last 30 days)
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

Answers (1)

Chidvi Modala
Chidvi Modala on 29 Aug 2019
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.

Products


Release

R2017a

Community Treasure Hunt

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

Start Hunting!