I am using Eviews 7.
I'm getting the following error message:
"Maximum line length exceeded .... "
I've attached a picture with the error message.
The current length of this string is more than 500.
Thanks for help.
Search found 6 matches
- Mon Sep 08, 2014 2:13 pm
- Forum: Programming
- Topic: Sending "merged" string-list to subroutine
- Replies: 5
- Views: 5567
- Thu Jul 14, 2011 1:52 pm
- Forum: Programming
- Topic: Creating variables with combinations
- Replies: 7
- Views: 7219
Re: Creating variables with combinations
Here, xs and ws, are three dimensional. Those, xs*_m and ws*_m, are part of xs and ws, respectively. workfile a 1990 2009 group xs group ws for !r = 1 to 3 !s = 1 while !s < 4 series y{!r}_{!s} = rnd xs.add y{!r}_{!s} series w{!r}_{!s} ws.add w{!r}_{!s} group xs{!r}_m xs{!r}_m.add y{!r}_{!s} group w...
- Thu Jul 14, 2011 12:53 pm
- Forum: Programming
- Topic: Creating variables with combinations
- Replies: 7
- Views: 7219
Re: Creating variables with combinations
This is the simplest case, but in this case, group ws, which contains the averaged series, is two dimensional. I'd like to create one of 3 dimensions. workfile a 1990 2009 group xs group ws for !r =1 to 3 series y{!r} = rnd xs.add y{!r} series w{!r} ws.add w{!r} next matrix(20,3) mat1 !col=1 for !i=...
- Thu Jul 14, 2011 9:27 am
- Forum: Programming
- Topic: Creating variables with combinations
- Replies: 7
- Views: 7219
Re: Creating variables with combinations
In paso2.prg, I'm not sure when using a counter for each group, to perform the stepwise average, if this counter isn't working in the way it creates the series. It does not increase the group to calculate again the averaged series or calculate many times in the same w* series. In the group gw1, the ...
- Thu Jul 14, 2011 8:07 am
- Forum: Programming
- Topic: Creating variables with combinations
- Replies: 7
- Views: 7219
Re: Creating variables with combinations
The first part, up to the first include, creates 5 groups with 6 series in each. The second (using the same initial group, but in its second dimension), creates 6 groups with 5 series, as opposed to the previous. The content in two files is the same, but it is applied to the first and to the second ...
- Thu Jul 14, 2011 12:05 am
- Forum: Programming
- Topic: Creating variables with combinations
- Replies: 7
- Views: 7219
Creating variables with combinations
Hi, I'm using EV5. I'm trying to use combinatorial to average series within several groups. The following is my code, in which I divided the series of a group into two subgroups and trying to estimate from those, an average in its series. The problem is in the attached files. The code is a draft, th...
