embedded matlab function
Mostra commenti meno recenti
I'm using embedded matlab function for my project. How to initialize the parameter just once at the beginning? some sort like this: j = 0 (initialize once only) j=j+1 (the value of j is updated after every loop running)
Risposte (1)
Rick Rosson
il 22 Dic 2011
Please try:
persistent j
if isempty(j)
j = 0;
end
j = j + 1;
HTH.
Rick
Categorie
Scopri di più su Get Started with MATLAB in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!