Borrar filtros
Borrar filtros

how to change the fall time of step input in simulink

2 visualizaciones (últimos 30 días)
Swasthik Baje Shankarakrishna Bhat
Swasthik Baje Shankarakrishna Bhat el 22 de Sept. de 2022
Respondida: Sam Chak el 22 de Sept. de 2022
Hi,
Can we have a neative sloped step input with programmable fall time?
I tried to follow this way but not able to rreproduce the result.
Thanks and regards,
Swasthik

Respuestas (1)

Sam Chak
Sam Chak el 22 de Sept. de 2022
You reuse the same syntax. I created a general one so that you can enter the desired parameters:
% Syntax:
% u = min(1, max(0, "Linear Line function"));
t = linspace(0, 25, 251);
ramp_start = 10;
ramp_end = 15;
u = min(1, max(0, -1/(ramp_end - ramp_start)*(t - ramp_end)));
plot(t, u, 'linewidth', 1.5), grid on, ylim([-1 2])

Categorías

Más información sobre Event Functions en Help Center y File Exchange.

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by