blob: eb0aafcea308729cd2375ecc0b136fe9062f16ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Check for the input arguments
C = [
0.0372 0.2869
0.6861 0.7071
0.6233 0.6245
0.6344 0.6170];
d = [
0.8587
0.1781
0.0747
0.8405];
// Error
//lsqlin: Unexpected number of input arguments : 1 provided while should be in the set of [2 3]
//at line 55 of function lsqnonneg called by :
// [xopt,resnorm,residual,exitflag,output,lambda] = lsqnonneg(C)
[xopt,resnorm,residual,exitflag,output,lambda] = lsqnonneg(C)
|