Brace indexing is not supported for variables of this type

1 vue (au cours des 30 derniers jours)
Christopher Wunder
Christopher Wunder le 5 Avr 2022
Hi,
I want to use a SimulationInput object as an argument for "sim()" because it seems to work with simulink compiler.
The error
Error using SimulationClass/runSimulation (line 63)
Brace indexing is not supported for variables of this type.
Error in testclass (line 3)
myobj.runSimulation(); - Show complete stack trace
ocurrs when the method runSimulation is run.
I can't figure out exactly why this is happening. It does run fine when I use the modelname, that is a string: sim(modelName).
The "sim" command isn't shadowed. I get an error when I use it without any arguments as well.
Maybe something is wrong with my SimulationInput object. I added the output of SimIn.
% testclass.m
function testclass()
myobj = SimulationClass('Bremsscheibensimulation_Simulation', "AMS-TEST", "input_script"); %, user_data_struct);
myobj.runSimulation();
end
% SimulationClass.m
function runSimulation(obj)
obj.saveParamsToFile()
simIn = Simulink.SimulationInput(obj.simModelName);
simIn = simIn.loadVariablesFromMATFile(obj.simDataFile);
simIn = simIn.setModelParameter('StopTime', num2str(obj.fahrmanoeverObj.t_sim));
simIn = simulink.compiler.configureForDeployment(simIn);
obj.simOutput = sim(simIn);
end
% Output SimIn
simIn =
SimulationInput with properties:
ModelName: 'Bremsscheibensimulation_Simulation'
InitialState: [0×0 Simulink.op.ModelOperatingPoint]
ExternalInput: []
ModelParameters: [1×3 Simulink.Simulation.ModelParameter]
BlockParameters: [0×0 Simulink.Simulation.BlockParameter]
Variables: [1×120 Simulink.Simulation.Variable]
PreSimFcn: []
PostSimFcn: []
UserString: ''

Réponse acceptée

Christopher Wunder
Christopher Wunder le 7 Avr 2022
Déplacé(e) : Cris LaPierre le 9 Sep 2022
ok I figured it out by now, in case anyone has the same Problem:
I replaced "simIn = simulink.compiler.configureForDeployment(simIn)" by "simulink.compiler.configureForDeployment(simIn)". I don't know why it works, simulink.compiler.configureForDeployment seems to return the object, I can see the same output in the command window when initializing the SimulationInput object, but with a changed ModelParamter of course (and in different state it seems).
Anyway the examples on simulink.compiler.configureForDeployment in the documentation do also return the object, this might be a bit confusing.
  1 commentaire
William Stokes
William Stokes le 9 Sep 2022
Déplacé(e) : Cris LaPierre le 9 Sep 2022
I had this exact problem and your solution has fixed it (I think!). But very weird, because you are correct it does go against all the documentation which is suggesting the simin object is immutable and should be written back to itself...weird. But thanks still!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Simulink Environment Customization dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by