Search found 564 matches

by EViews Matt
Tue Nov 22, 2016 1:03 pm
Forum: Programming
Topic: Using a string list to set matrix labels
Replies: 2
Views: 3849

Re: Using a string list to set matrix labels

Hello,

You didn't mention which version of EViews you have, but try using the string object directly with setcollabels, i.e., mat1.setcollabels {str_cc}.
by EViews Matt
Fri Nov 18, 2016 4:12 pm
Forum: Estimation
Topic: Near Singular Matrix Error for Impulse response fonctions
Replies: 4
Views: 8346

Re: Near Singular Matrix Error for Impulse response fonctions

Hello, Let me address your questions in reverse order. First, regarding the missing confidence intervals when you select the "None" option under "Response Standard Errors". The confidence interval presentation make use of the standard errors, so if you choose to omit the standard...
by EViews Matt
Thu Nov 17, 2016 2:25 pm
Forum: Programming
Topic: Delete blank rows in alpha series
Replies: 5
Views: 4311

Re: Delete blank rows in alpha series

I'm not aware of any way to sort an alpha series without affecting the rest of its page. I believe you'll need to copy the data to a new page, sort it there, and then copy it back. For example: %originalPage = @pagename pagecopy(page=tmp) alpha sort alpha copy alpha {%originalPage}\alpha pagedelete ...
by EViews Matt
Thu Nov 17, 2016 11:37 am
Forum: Programming
Topic: Delete blank rows in alpha series
Replies: 5
Views: 4311

Re: Delete blank rows in alpha series

Hello, The delete command removes entire objects, not individual observations. In addition, the length of an alpha series is dependent on the workfile page's observations, so you cannot "shorten" the alpha series without removing observations from the workfile page. If that's what you want...
by EViews Matt
Wed Nov 16, 2016 3:52 pm
Forum: Programming
Topic: @uniquevals with option to exclude
Replies: 3
Views: 3368

Re: @uniquevals with option to exclude

If you merely want to remove the extra space in the final string, you could use the following quick-and-dirty workaround:

Code: Select all

list = @wjoin(@wsplit(@wjoin(uniquegroups)))

It's not efficient, but it is concise.
by EViews Matt
Tue Nov 15, 2016 10:18 am
Forum: Programming
Topic: Endless Subroutine
Replies: 5
Views: 4790

Re: Endless Subroutine

Hello, Yes, you can pass an svector to a subroutine. That's actually what I was suggesting you do after making the subroutine local. Here's your original code with the necessary modifications: !sv = 1 svector(4) sofar_str subroutine local combinationNR(string %sofar, string %rest, scalar !n, scalar ...
by EViews Matt
Mon Nov 14, 2016 11:40 am
Forum: Programming
Topic: Endless Subroutine
Replies: 5
Views: 4790

Re: Endless Subroutine

Hello, There are a pair of issues primarily responsible for the difficulties you're experiencing. First, inside the for loop, your use of @wmid() assumes that variable !i is an element index, but in the loop's condition !i will iterate through all of %rest's character indices. For example, in the in...
by EViews Matt
Mon Nov 07, 2016 5:03 pm
Forum: Bug Reports
Topic: matplace crash
Replies: 1
Views: 3526

Re: matplace crash

The current EViews patch (2016-10-17) has corrected this issue.
by EViews Matt
Thu Nov 03, 2016 4:06 pm
Forum: Estimation
Topic: SVAR Optimization control
Replies: 6
Views: 6152

Re: SVAR Optimization control

Under the “from residual correlation” option the initial parameter values are .1, but the parameters undergo two stages of optimization. The second stage is the usual optimization (seeking A * Sigma * A’ = B * B’) that occurs regardless of initial value choice. However, in the first stage Sigma (the...

Go to advanced search