EViews COM Automation Server and Matlab as client, try the following Matlab code
Code: Select all
hm = actxserver('Eviews.Manager');
ha = hm.GetApplication;
h = actxGetRunningServer('Eviews.Application');
%ha : Interface.EViews_1.0_Type_Library.IApplication
%h : COM.Eviews_Application
Code: Select all
ha.Run('wfcreate u 4')
h.Run('wfcreate u 4')
I find that both h and ha have same methods, what are the differences then?
