Error converting from Simulink.SimulationInput to double
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Laxmi akshaya thela
le 18 Août 2024
Commenté : Laxmi akshaya thela
le 19 Août 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 commentaires
Réponse acceptée
Laxmi akshaya thela
le 18 Août 2024
2 commentaires
Walter Roberson
le 18 Août 2024
(You should have Accepted my Answer instead of posting your own Answer and Accepting that.)
Plus de réponses (1)
Walter Roberson
le 18 Août 2024
Before
for t = 1:(len_trq)
insert
clear simIn
You have an existing simIn that is double precision.
0 commentaires
Voir également
Catégories
En savoir plus sur Startup and Shutdown dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!