我试图使用actxserver命令(类似于MATLAB)通过SciLab运行程序。但它显示出了错误。
我在MATLAB中使用了相同的命令,而且它可以工作。命令是
DC= actxserver('DesktopController.CoModel');
它给出了错误:未定义变量: actxserver
请使用您必须在PC上试用的ProgID。
谢谢
我使用的是: SciLab 6.0.0用于windows 7 64位https://www.scilab.org/en/download/latest
发布于 2017-09-22 19:40:41
这是因为独立的Scilab没有证明actxserver:您需要一个外部工具箱并在本地安装它,您可以在http://forge.scilab.org/index.php/p/ole/上找到它
安装OLE工具箱
要求
如何操作
赤霉病
exec('builder.sce',-1)
exec('loader.sce',-1)
// now example at http://forge.scilab.org/index.php/p/ole/ should be available使它与Scilab 6.0.0一起工作
将文件builder.sce第15行和loader.sce第12行更改为:
if and([v(1)<5,v(2)<4]) then这应该让工具箱从scilab 6.0.0开始。
https://stackoverflow.com/questions/46364404
复制相似问题