Generate ramp signal for a certain time in simulink
92 vues (au cours des 30 derniers jours)
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
Réponses (2)
Siddharth Tripathi
le 10 Mar 2021
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
TAB
le 5 Sep 2018
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.
Voir également
Catégories
En savoir plus sur Signal Generation 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!