value that increase along with changing value by manual switch block simulink using embedded matlab function
Mostrar comentarios más antiguos
hi all
i just wanna ask,how we do the increasing value by changing manual switch in simulink??
for example: i have manual switch, with 2 constant block connect to it, first signal= 1 , second=0. i have calculation that everytime we change value in manual switch the system will add 10 to the current signal.
how we do it with embedded matlab function??
1 comentario
Walter Roberson
el 15 de Jul. de 2011
Duplicate is http://www.mathworks.com/matlabcentral/answers/11705-value-that-increase-along-with-changing-value-in-manual-switch-block-simulink
Respuesta aceptada
Más respuestas (4)
Walter Roberson
el 15 de Jul. de 2011
1 voto
Please do not open duplicate questions; it just ends up duplicating efforts.
You can edit your previous question if needed.
1 comentario
Luhur
el 15 de Jul. de 2011
Kaustubha Govind
el 15 de Jul. de 2011
FWIW, here's an EML implementation:
function y = mycounter(u)
%#eml
persistent count;
persistent prevInput;
firstInput = false;
if isempty(count)
count = 0;
end
if isempty(prevInput)
prevInput = 0;
firstInput = true;
end
if ~firstInput
if (prevInput ~= u)
count=count+1;
end
end
prevInput = u;
y = count;
end
2 comentarios
Luhur
el 15 de Jul. de 2011
Walter Roberson
el 15 de Jul. de 2011
FWIW means "For What It Is Worth".
Fangjun Jiang
el 15 de Jul. de 2011
1 voto
Okay, feed the switch output signal to the triggered subsystem, still choose "either". Also, feed the switch output signal to an Inport of the the triggered subsystem, multiple it by 10, then feed it to an Integrator block. Did not verify. Should work. Try it yourself.
3 comentarios
Luhur
el 15 de Jul. de 2011
Fangjun Jiang
el 15 de Jul. de 2011
Then change the sample time of the Integrator block to be -1.
Luhur
el 16 de Jul. de 2011
Luhur
el 15 de Jul. de 2011
0 votos
4 comentarios
Fangjun Jiang
el 15 de Jul. de 2011
It certainly can be done. It is different though. Your original intention was to increase the counter by 10 every rising or falling edge of your switch output. This one, how do you increase if the switch output is 1? Increase 10 at every time step? Or there is something else trigger the increase?
Luhur
el 15 de Jul. de 2011
Fangjun Jiang
el 15 de Jul. de 2011
If 1 then current value is increased by 10. Increased only once, or every time step as long as the switch output is 1?
Luhur
el 15 de Jul. de 2011
Categorías
Más información sobre Simulink en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!