project question

2 vues (au cours des 30 derniers jours)
teesside university
teesside university le 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)

Réponses (1)

Grufff
Grufff le 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.

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by