How can I make a DCOM Server instance of MATLAB visible?
4 次查看(过去 30 天)
显示 更早的评论
From my local Machine 1, I am starting an instance of MATLAB on a remote Machine 2 using DCOM. However, the instance does not display graphics on the remote display. I would like to do so.
I am using another instance of MATLAB on my local Machine 1 as the DCOM Client.
采纳的回答
MathWorks Support Team
2009-6-27
DCOM allows programs executing as the Interactive User to display graphics. To make MATLAB visible on the remote Machine 2, you can configure MATLAB to execute as the Interactive User as follows:
1. On Machine 2, start the DCOM Configuration utility by selecting "Start->Control Panels->Administrative Services->Component Services".
2. Select "Component Services->Computers->My Computer->DCOM Config".
3. Right-click the appropriate "Matlab.Application" line and select "Properties". For MATLAB 7.0 (R14) to MATLAB 7.3 (R2006b), select "Matlab.Application (Version 7.0)".
4. Click the "Identity" tab and select "Interactive User". Click "OK".
Now you can start MATLAB from a local MATLAB session, and make it visible:
h = activexserver('matlab.application','machine2')
h.Visible = 1
h.Execute('plot(1:10)')
0 个评论
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!