project question

8 views (last 30 days)
teesside university
teesside university on 8 Mar 2012
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)

Answers (1)

Grufff
Grufff on 8 Mar 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.

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!