One half sine wave simulink
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Pavel
am 15 Aug. 2015
Beantwortet: Mohammad Al Salti
am 21 Sep. 2016
Hi. I'm trying to simulate using Simulink a quarter car model as it passes over a obstacle. My problem is that the obstacle has the shape of a single half sine wave as the one find in the attachment. How do I optain this in Simulink?
Thank you
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 15 Aug. 2015
Create a file filename.mat
A=1;
T=2*0.01;
f=1/T;
t=0:0.001:0.3;
idx=t<0.1 | t>0.11;
y=A*sin(2*pi*f*(t-0.1));
y(idx)=0;
yt=[t;y];
save filename yt
Weitere Antworten (1)
Mohammad Al Salti
am 21 Sep. 2016
Hello, I also want to have this input but I didn't understand how to make the m-file and import it into simulink using from data file. Can you explain more please?
0 Kommentare
Siehe auch
Kategorien
Mehr zu Prepare Model Inputs and Outputs finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!