Generate ramp signal for a certain time in simulink

113 次查看(过去 30 天)
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.*

回答(2 个)

Siddharth Tripathi
Siddharth Tripathi 2021-3-10
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.

TAB
TAB 2018-9-5
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.
  1 个评论
Cesar Herbas Zeballos
Thank you for answering TAB, I will follow your advice ... although I commented that I have some doubts when using the MATLAB function to be able to create my own customized blocks, I certainly do not know if it is the best option, since in the future I would like to generate curves graphics that are based on certain input parameters.

请先登录,再进行评论。

产品


版本

R2015a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by