vb中调用matlab的com组件
(1)fun.m如下:function [f,g]=fun(x)
f=2*x
g(1)=x
只是为了测试用的
(2)
com组件中包含了 constr,lp ,fun
(3)在vb中调用如下:
Call t.constr(4, x, Options, lambda, hess, "fun", x_in, "", vlb, vub, gradfun, 6)
其中,x,Options,lambda,hess 申明为variant类型 ,为输出
x_in =10.0 vlb=20.0 vub=40.0
为题:
调用的时候,提示 “fun” was called with more than the declared number of input(fun函数输入参数过多的意思)
不知道有没有人可以帮忙看下,提个建议什么的