Error converting from Simulink.SimulationInput to double
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Laxmi akshaya thela
el 18 de Ag. de 2024
Comentada: Laxmi akshaya thela
el 19 de Ag. de 2024
%% Speed Array
Speed = zeros(1,5001);
len = numel(Speed);
q=0;
for s = 1:len
Speed(1,s) = q;
q = q + (1/(len-1));
end
Trq_inst = zeros(1,401);
len_trq = numel(Trq_inst);
Trq_ref =1;
for t = 1:(len_trq)
% simIn = zeros(1,401);
% simOutputs = zeros(1,401);
Trq_inst(1,t)= Trq_ref;
for i = 1:len
simIn(i) = Simulink.SimulationInput('fl_name');
simIn(i) = setBlockParameter(simIn(i),'fl_name/Speed_sweep','Spd',Speed(i));
end
simOutputs = sim(simIn);
for i = 1: len
Res1 = simOutputs(1,i).sldemo_absbrake_output{1}.Values.Res1.Data;
Res2= simOutputs(1,i).sldemo_absbrake_output{1}.Values.Res2.Data;
Struc = struct("Res1",Res1,"Res2",Res2);
fname = sprintf('Trq%d_Spd%d.mat', Trq_ins(1,t)*400,5000*Speed(1,i));
save(fname,"Struc")
%save("trq_400.mat","Struc")
end
I am getting an error for the Simulink.SimulationInput converting to double.
0 comentarios
Respuesta aceptada
Laxmi akshaya thela
el 18 de Ag. de 2024
2 comentarios
Walter Roberson
el 18 de Ag. de 2024
(You should have Accepted my Answer instead of posting your own Answer and Accepting that.)
Más respuestas (1)
Walter Roberson
el 18 de Ag. de 2024
Before
for t = 1:(len_trq)
insert
clear simIn
You have an existing simIn that is double precision.
0 comentarios
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!