project question
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm using embedded matlab function for my project. How to initialize the parameter just once at the beginning? some sort like this: kp = 0 (initialize once only) kp=kp+1 (the value of kp is updated after every loop running)
0 Kommentare
Antworten (1)
Grufff
am 8 Mär. 2012
I'm not sure if I've understood correctly what you want to do, because you've essentially answered your own question, but...
you can define any variables you like in a script or function, so
kp=0
will work fine as long as it's not within a loop. Then, if you wish to increment it each time through a process or iteration just include the incrementing statement in the loop. You can also nest loops if needed.
Look up commands "for" and "while" in Matlab help to read about loops and see some examples.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements 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!