Generate ramp signal for a certain time in simulink
Afficher commentaires plus anciens
Greetings ... I am new to the community, as well as Matlab, I would like to know how I can generate a ramp signal which lasts a certain time, since the ramp signal of the source library does not have the possibility to change this configure this parameter. So far I have tried to implement my own block in MATLAB fuction.
function y = fcn(slope,rise_time,start_time)
%#codegen
t = start_time:rise_time;
y = slope*t;
But I only get the following error.
- Output 'y' you have variable size but the upper bound is not specified;explicit upper bound must be provided.*
1 commentaire
VARSSHA P
le 21 Nov 2020
ramp signal with time period 4 secs
Réponses (2)
Siddharth Tripathi
le 10 Mar 2021
1 vote
Hey Cesar,you can use two ramp functions in simulink with the starting time of one set at the time when you want to start the ramp function and another with its slope having a negative value of and starting time set to when you want to end the ramp input.
1 commentaire
Wycliff Dembe
le 20 Sep 2021
Thanks you've saved my day
TAB
le 5 Sep 2018
0 votes
Function which you have written will generate whole Ramp in just onec call (one sample).
In Simulink, this function will be called every sample time. So this is not going to work.
Also in simulink, time base will be generated by simulink only. If you want you can read the current simulation time using Clock block.
So you can use the combination of Clock, Multiply and Compare blocks to create a signal which ramps up to cirtain time.
Catégories
En savoir plus sur Signal Generation dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!