Effacer les filtres
Effacer les filtres

Accessing variables from workspace into user-created function block in Simulink

3 vues (au cours des 30 derniers jours)
Good afternoon,
As the title suggests, I defined some variable say, x in the workspace that has a number.
Using MATLAB function, I am trying to import that variable (just once!) and as simulation progress, under
certain condition, I want to increment that variable. However, since the function does not 'see' the variable x,
I end up declaring that variable inside the MATLAB Function Block. However, this keeps initializing the variable
and thus, I cannot increment it.
I need help to resolve this problem!

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 22 Déc 2013
You can declare your variable as persistent
function y=fcn(u)
persistent v
if isempty(v)
v=your_constant
end
v=v+increment
  3 commentaires
Azzi Abdelmalek
Azzi Abdelmalek le 22 Déc 2013
Modifié(e) : Azzi Abdelmalek le 22 Déc 2013
At time =0 , v takes the value your_constant. And each iteration the variable v will be incremented. persistent allows to remember the value of v
Daniel
Daniel le 22 Déc 2013
Actually I figured it out. No need for an answer. Thanks for brilliant answer!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Simulink Functions dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by