Filter löschen
Filter löschen

Error in the function "Simulink.​compiler.c​onfigureFo​rDeploymen​t" using App Designer

7 Ansichten (letzte 30 Tage)
I was trying to do a matlab app and I started to get the error:
"Dot indexing into the result of a function call requires parentheses after the function name. The
supported syntax is 'simulink().compiler'."
On the line where I have the function "Simulink.compiler.configureForDeployment"
This is the code I use on the button callback:
Model_Name = ('Prueba');
simInp = Simulink.SimulationInput(Model_Name);
simInp = simInp.setVariable('irradiance', app.IrradianceEditField.Value);
simInp = simInp.setVariable('temperature', app.TemperatureEditField.Value);
simInp = simulink.compiler.configureForDeployment(simInp);
stopTimeStr = num2str(app.SimulationTimeEditField.Value);
simInp = simInp.setModelParameter('StopTime', stopTimeStr);
simInp = simInp.setModelParameter('SimulationMode', 'Rapid');
simOut = sim(simInp);
time = simOut.tout;
current = simOut.yout{1}.Values.Data;
power = simOut.yout{2}.Values.Data;
voltage = simOut.yout{3}.Values.Data;
plot(app.UIAxes, time, current);
plot(app.UIAxes2, time, power);
plot(app.UIAxes3, time, voltage);
plot(app.UIAxes, voltage, power);
Thank you!

Antworten (0)

Kategorien

Mehr zu Interactive Model Editing finden Sie in Help Center und File Exchange

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by