Brace indexing is not supported for variables of this type

1 view (last 30 days)
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: ''

Accepted Answer

Christopher Wunder
Christopher Wunder on 7 Apr 2022
Moved: Cris LaPierre on 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 Comment
William Stokes
William Stokes on 9 Sep 2022
Moved: Cris LaPierre on 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!

Sign in to comment.

More Answers (0)

Categories

Find more on Simulink Environment Customization in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!