<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264889</link>
    <title>MATLAB Central Newsreader - Estimation of a vector error correction model</title>
    <description>Feed for thread: Estimation of a vector error correction model</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Tue, 03 Nov 2009 23:40:20 -0500</pubDate>
      <title>Estimation of a vector error correction model</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264889#691880</link>
      <author>Chris </author>
      <description>Dear Matlab users,&lt;br&gt;
&lt;br&gt;
I was wondering if anyone has estimated a Vector Error Correction model (e.g. between two cointegrated variables) based on the code of spatial econometrics of Johansen's cointegration test (&lt;a href=&quot;http://www.spatial-econometrics.com/coint/johansen.m)&quot;&gt;http://www.spatial-econometrics.com/coint/johansen.m)&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Any suggestions on how to implement/start with will be greatly appreciated,&lt;br&gt;
&lt;br&gt;
Thank you</description>
    </item>
    <item>
      <pubDate>Wed, 04 Nov 2009 04:54:01 -0500</pubDate>
      <title>Re: Estimation of a vector error correction model</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264889#691909</link>
      <author>the cyclist</author>
      <description>&quot;Chris&quot; &amp;lt;AzizC0rn@bluestring.com&amp;gt; wrote in message &amp;lt;hcqf13$l7$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Dear Matlab users,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I was wondering if anyone has estimated a Vector Error Correction model (e.g. between two cointegrated variables) based on the code of spatial econometrics of Johansen's cointegration test (&lt;a href=&quot;http://www.spatial-econometrics.com/coint/johansen.m)&quot;&gt;http://www.spatial-econometrics.com/coint/johansen.m)&lt;/a&gt;&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Any suggestions on how to implement/start with will be greatly appreciated,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thank you&lt;br&gt;
&lt;br&gt;
It is not clear from your question whether you are struggling with the theory, or the implemenation in MATLAB.  If you Google &quot;spatial econometrics&quot;, one of the first few links will be a massive PDF guide to the toolbox, which may be helpful.  I have you tried to implement and failed, I suggest you post some code and ask specific questions.&lt;br&gt;
&lt;br&gt;
the cyclist</description>
    </item>
    <item>
      <pubDate>Wed, 04 Nov 2009 05:30:21 -0500</pubDate>
      <title>Re: Estimation of a vector error correction model</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264889#691913</link>
      <author>Chris </author>
      <description>&quot;the cyclist&quot; &amp;lt;thecyclist@gmail.com&amp;gt; wrote in message &amp;lt;hcr1d9$9ql$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &quot;Chris&quot; &amp;lt;AzizC0rn@bluestring.com&amp;gt; wrote in message &amp;lt;hcqf13$l7$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; Dear Matlab users,&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; I was wondering if anyone has estimated a Vector Error Correction model (e.g. between two cointegrated variables) based on the code of spatial econometrics of Johansen's cointegration test (&lt;a href=&quot;http://www.spatial-econometrics.com/coint/johansen.m)&quot;&gt;http://www.spatial-econometrics.com/coint/johansen.m)&lt;/a&gt;&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Any suggestions on how to implement/start with will be greatly appreciated,&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Thank you&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; It is not clear from your question whether you are struggling with the theory, or the implemenation in MATLAB.  If you Google &quot;spatial econometrics&quot;, one of the first few links will be a massive PDF guide to the toolbox, which may be helpful.  I have you tried to implement and failed, I suggest you post some code and ask specific questions.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; the cyclist&lt;br&gt;
&lt;br&gt;
Thanks cyclist, actually I was looking for something to start with instead of programming from scratch, and after your comment I noticed that spatial econometrics has many procedures on ecm so this should give me a good start.</description>
    </item>
    <item>
      <pubDate>Wed, 04 Nov 2009 09:45:02 -0500</pubDate>
      <title>Re: Estimation of a vector error correction model</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/264889#691973</link>
      <author>Sebastian Arslanogullari</author>
      <description>Hi Chris&lt;br&gt;
I've worked quite a lot with the var_bvar library in the spatial econometrics toolbox in the past. My experience is that the functions work quite well and are sufficient if you want to estimate simple VAR/Error correction models. &lt;br&gt;
&lt;br&gt;
If you want to estimate slightly more complicated models you will find that you will have to write your own versions of e.g. the ecm function. Some examples include models where you want to estimate the error correction variables yourself instead of using the Johansens ML method and/or if you want to use additional exogenous variables. If this is the case, I suggest that you use the ecm as a starting point and change it according to you needs.&lt;br&gt;
&lt;br&gt;
So in summary, I think that starting out with ecm is smarter than writing your own code from scratch.&lt;br&gt;
Regards&lt;br&gt;
Sebastian Arslanogullari&lt;br&gt;
&quot;Chris&quot; &amp;lt;AzizC0rn@bluestring.com&amp;gt; wrote in message &amp;lt;hcqf13$l7$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Dear Matlab users,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I was wondering if anyone has estimated a Vector Error Correction model (e.g. between two cointegrated variables) based on the code of spatial econometrics of Johansen's cointegration test (&lt;a href=&quot;http://www.spatial-econometrics.com/coint/johansen.m)&quot;&gt;http://www.spatial-econometrics.com/coint/johansen.m)&lt;/a&gt;&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Any suggestions on how to implement/start with will be greatly appreciated,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thank you</description>
    </item>
  </channel>
</rss>

