标签: matlab
我知道如何为案例创建custom fit type,例如,有两个独立变量和一个因变量:
ft = fittype(@(a, b, x1, x2, y) a*x1 + b*x2, 'coefficients', {'a', 'b'}, 'independent', {'x1', 'x2'}, 'dependent', {'y'})
但是,如果我不能假设自变量的数量怎么办?例如,我可能有10而不是2.如何为可变数量的自变量创建自定义拟合类型?