A simple problem with STK10
10 ビュー (過去 30 日間)
古いコメントを表示
I put a program on Matlab which should open STK and run a scenerio. Now when I refer Matlab to open STK there is an error:
Invoke Error, Dispatch Exception:
Source: AGI.Application.1
Description: You do not have the required license to connect externally to the application.
Error in STKprogram (line 5)
root = app.personality2;
The program is as follows:
app = actxserver('STK.Application');
root = app.personality2;
app.visible=true;
I dont see where the problem is, help would be appreciated.
1 件のコメント
Fatima zahra SADIR
2017 年 6 月 2 日
Hello , please i wonder after you had your evaluation license of stk integration , is that work well with you ?? , is your problem solved ?
回答 (2 件)
Jassem Sleiman
2016 年 3 月 15 日
I work with both MatLab and STK, and have dealt with this exact issue. Your problem is that you don't have the STK Integration Add-On Module.
The STK Integration module is what allows any API to connect and manipulate the root portions of STK. Meaning, if you want to use MatLab to build your scenario objects like satellites, etc., or adjusting time step, or window manipulation, or even setting the Epoch. If you tried to write the same bit of code in C++, C#, JAVA, or Python, you would encounter the same issue.
app = actxserver( 'STK.Application' ); Will work just fine, with any code. But without STK Int(egration), that's as far as you'll get.
I suggest reaching out to AGI, for a trial license.
1 件のコメント
FatimaZahra SADIR
2017 年 5 月 19 日
hello , ihave same probleme and i understand you answer but i didn't find the stk/integration . could you help me to find it or give me a link where i can have it ?
Image Analyst
2014 年 12 月 26 日
I don't know what STK is, but it appears you don't have a license to run it, at least not as an ActiveX server. Another case like that is when people have Microsoft Office Starter Edition - you can run office apps just fine standalone, but not as ActiveX servers. Can you run STK by itself?
4 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!