project question

2 次查看(过去 30 天)
teesside university
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)

回答(1 个)

Grufff
Grufff 2012-3-8
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.

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by