Set and reset Simulink

1 Ansicht (letzte 30 Tage)
Adam Keller
Adam Keller am 26 Jul. 2015
Kommentiert: Adam Keller am 26 Jul. 2015
Hello,
I am having trouble regarding value holding and reset with a simulink function. When a condition occurs I would like to have that value held until an external reset occurs.
Ex)
if x==7
z = 6; % but z stays at 6 even after x does not equal 7
elseif reset ==1 %reset occurs
z = 0;
end
I would like to trigger a value, hold, use an external signal to reset, and then allow to trigger again. Is there a block that can do this?
Many thanks.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 26 Jul. 2015
Bearbeitet: Azzi Abdelmalek am 26 Jul. 2015
Try this
function z=fcn(x,reset)
persitent xx
if isempty(xx)
xx=0
end
if (x==7|xx==1) & reset==0
z = 6;
xx=1;
elseif reset==1
z = 0;
xx=0
end
  3 Kommentare
Azzi Abdelmalek
Azzi Abdelmalek am 26 Jul. 2015
Adam Keller
Adam Keller am 26 Jul. 2015
That's what I meant, my apologies. Thank you Azzi!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Block Libraries finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by