how to change suddenly dropping output by a gradually dropping output?
3 次查看(过去 30 天)
显示 更早的评论
I am using simulink matlab function to process some inputs and create an output as shown
Here, as shown in the graph I don,t want a step decrease(marked with blue
arrow). Instead I need it follow a slope and go down gradually. This is changed by the 'x2' input in the simulink figure shown above which right now is just a constant block. This block gets activated only when the condition mentioned in the code below is fulfilled and also this height can vary dependng on the different inputs. In nutshell I can only predict the starting point of the red line (top one) and then it should go down to other point on its own.
function y = Signal_gain(Kr,x,x1,x2,x3)
if (Kr<x1)
u = 1;
elseif (Kr>x1)&&(Kr<0)
u = x2;
else
u = x3;
end
y = u*x;
end
0 个评论
回答(1 个)
Fangjun Jiang
2020-8-21
The Rate Limiter block is usually used for this. It is used to generate a slope after (not before) the falling or rising edge. But if you could "predict the starting point of the red line", I think you could move the edge to that point and use the Rate Limiter block outside of the MATLAB Function block to do the job.
2 个评论
Fangjun Jiang
2020-8-21
"but starts too late and it is too little"
You said you could "predict the starting point of the red line". That should be the timing for the new falling edge. The rate of the slope can be adjusted by the parameter of the Rate Limiter block.
The MATLAB Function block is executed at every simulation step. You certainly can put in whatever code in the MATLAB Functon block to generate your desired output.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!