Convert equations to MATLAB code
Show older comments
% Equation 1
Vi(k+1)=w*Vi(k)+c1*r1(Xi,best(k))+c2*r2(Xg,best(k)-Xi(k))
% Equation 2
Xi(k+1)=Xi(k)+Vi(k+1)
% Equation 3
w(k)=wmax-(wmax-wmin)/Niter
Answers (1)
KALYAN ACHARJYA
on 18 May 2019
Edited: KALYAN ACHARJYA
on 18 May 2019
0 votes
Last two equations are already in Matlab form, may be just required (.) dot in equation 3 depending on type of variable (if any vector dot operation).
In first equation best(k) menas?
6 Comments
Tauqeer Nadeem
on 18 May 2019
Walter Roberson
on 18 May 2019
The equations are already in MATLAB form under the assumptions:
- That indexing starts at 1
- That w, c1, c2, wmin, wmax, Niter are all scalars
- That r1 and r2 are each functions that expect a vector for the first argument and a scalar for the second argument, and return scalar values
If k is not a scalar then it is questionable whether correct results would be calculated, but it would not be a MATLAB error.
There are also some circumstances that violate the second and third assumptions in which the code could be valid.
Tauqeer Nadeem
on 19 May 2019
Edited: Tauqeer Nadeem
on 19 May 2019
KALYAN ACHARJYA
on 19 May 2019
For 2 ans 3 eqns you already did the same. For eq 1 more clarification needed about Xi,best(k)
Tauqeer Nadeem
on 19 May 2019
Walter Roberson
on 19 May 2019
You already wrote them in MATLAB form, provided that the three conditions I mentioned hold. If any of those three conditions do not hold, you have to tell us more details.
Categories
Find more on Mathematics 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!

