summation

Problems with modeling
Post Reply
rejinsr037
User
User
Posts: 8
Joined: 4 years ago

summation

Post by rejinsr037 »

11.PNG
11.PNG (3.35 KiB) Viewed 2143 times
how to code this ?
User avatar
Renger
Posts: 639
Joined: 7 years ago

Re: summation

Post by Renger »

Hi
Just use Y(i-1,r,t). Note however, that this means that you can't use this for the first i if there is no value for i-1. If it is a variable, you probably will have to fix the Y(i-1) to a certain value or you can define the equation for all i > 1

Code: Select all

myeq(i,r)$(ord(i)>1)...
    Y(i,r,t) =L= sum(t, Y(i-1,r,t);
Cheers
Renger
____________________________________
Enjoy modeling even more: Read my blog on modeling at The lazy economist
rejinsr037
User
User
Posts: 8
Joined: 4 years ago

Re: summation

Post by rejinsr037 »

THANK YOU :)
Post Reply