Variable change should not affect during loop execution?

2 visualizaciones (últimos 30 días)
Sanjeet Kulkarni
Sanjeet Kulkarni el 12 de Nov. de 2021
Comentada: Sanjeet Kulkarni el 30 de Nov. de 2021
How should I not update the variable if its value is changed from dashboard during execution? For example:
If a variable value is 1 then throughout the time of execution of code it should be 1. If its value is changed from dashboard to 2 in between, then the loop should first complete its execution using the previous value and once it has completed then only the variable value should be 2 and then rest of the execution should be done. Basically, what I am trying to do is, changing variable value in between should not affect the loop, only after it has completed its execution, then it should take the new value. Can anyone guide me on how should I do it?
  3 comentarios
Sanjeet Kulkarni
Sanjeet Kulkarni el 30 de Nov. de 2021
Using the assignin function?
Sanjeet Kulkarni
Sanjeet Kulkarni el 30 de Nov. de 2021
Eg: Two variables a and b in simulink. Simulink calls one matlab function while executing.
Function
if (condition)
output = b;
else (condition)
output= a;
end
If value is changed of a and b, the change should be reflected after it has come out of the if loop. What other condition can I put in with if loop or any other way by which it can be done?

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 30 de Nov. de 2021
Function
for variable = 1 : number_of_iterations
original_a = a;
original_b = b;
if (condition)
output = original_b;
else (condition)
output= original_a;
end
end
If a or b are changed through the dashboard any time between copying them to the original_* variables and the end of the loop iteration, then the old version wil be used until the next loop iteration.
If it is important that the user should be able to change the value with the dashboard between the time of the "for variable" loop moving to the next iteration, and the point where this code copies the variables, then a different approach would need to be taken.
  1 comentario
Sanjeet Kulkarni
Sanjeet Kulkarni el 30 de Nov. de 2021
I feel a different approach should be taken.
for variable = 1 : 100
original_a = a;
original_b = b;
if variable < 50
output = original_b;
else
output= original_a;
end
end
Using this, if a=1, b=1 and if I change a and b values before variable reaches 100 the output reflects this change.
What I am trying to do is, if values of a&b are changed to 2 before variable reaches 100, the for loop should execute completely and when variable starts again from 1 after reaching 100, that time the output should reflect the changes and it should change from 1 to 2.

Iniciar sesión para comentar.

Categorías

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

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by