Huber Penalty causing issues on Quickstart

Downloaded the software. Startup and setup were good, but when I went to run the quickstart, I am able to get a few iterations in before this pops up:

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SECTION 2.3: OTHER NORMS AND FUNCTIONS: HUBER PENALTY %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% cvx specification
cvx_begin
variable x(n)
minimize( sum(huber(A*x-b)) )
Incorrect number or types of inputs or outputs for function vec.

Error in cvx/sparsify>replcols (line 142)
cvx___.readonly( ndxs ) = vec( cvx_readlevel( bN ) );
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error in cvx/sparsify (line 61)
[ x, forms, repls ] = replcols( x, tt, ‘full’, forms, repls, isobj );
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error in cvx_end (line 212)
x = sparsify( x, ‘objective’ );
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error in cvx/huber_pos (line 45)
cvx_end
^^^^^^^
Error in huber (line 35)
y = huber_pos( abs( x ), varargin{:} );
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error in quickstart (line 207)
minimize( sum(huber(A*x-b)) )
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

I haven’t modified anything and currently I do not know anything about a Huber Penalty. Any ideas as to why this is happening after first install?

This is inside the huber script:

function y = huber( x, varargin )

%HUBER Huber penalty function.
% HUBER(X) computes the Huber penalty function
%
% HUBER(X) = |X|^2 if |X|<=1,
% 2|X|-1 if |X|>=1.
%
% HUBER(X,M) is the Huber penalty function of halfwidth M, M.^2.*HUBER(X./M).
% M must be real and positive.
%
% HUBER(X,M,T) computes the Huber penalty function with halfwidth M and
% concomitant scale T:
%
% HUBER(X,M,T) = T.HUBER(X./T,M) if T > 0
% +Inf if T <= 0
%
% This form supports the joint estimation of regression coefficients and
% scaling; c.f. Art B. Owen, “A robust hybrid of lasso and ridge regression”,
% techincal report, Department of Statistics, Stanford University, 2006:
% http://www-stat.stanford.edu/~owen/reports/hhu.pdf
%
% For matrices and N-D arrays, the penalty function is applied to each
% element of X independently. M and T must be compatible with X in the same
% sense as .
: one must be a scalar, or they must have identical size.
%
% Disciplined convex programming information:
% HUBER is jointly convex in X and T. It is nonomonotonic in X and
% nonincreasing in T. Therefore, when used in CVX specifications, X
% must be affine and T must be concave (or affine). T must be real.

if ~cvx_isaffine( x ),
error( ‘Disciplined convex programming error:\n HUBER is nonmonotonic in X, so X must be affine.’, 1 ); %#ok
end
y = huber_pos( abs( x ), varargin{:} );

% Copyright 2005-2016 CVX Research, Inc.
% See the file LICENSE.txt for full copyright information.
% The command ‘cvx_where’ will show where this file is located.

Would appreciate the help!

Went through and copied output from the first steps:

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SECTION 2.1: LEAST SQUARES %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% Input data
m = 16; n = 8;
A = randn(m,n);
b = randn(m,1);

% Matlab version
x_ls = A \ b;

% cvx version
cvx_begin
variable x(n)
minimize( norm(A*x-b) )
cvx_end

echo off

Results:

norm(Ax_ls-b): 2.0354
norm(A
x-b): 2.0354
cvx_optval: 2.0354
cvx_status: Solved

Verify that x_ls == x:
x_ls = [ -0.2628 0.8828 -0.0734 -1.0844 0.3249 -0.3330 0.0603 0.3802 ]
x = [ -0.2628 0.8828 -0.0734 -1.0844 0.3249 -0.3330 0.0603 0.3802 ]
Residual vector:
A*x-b = [ -0.3262 -0.0070 -0.9543 0.2447 -0.6418 -0.3426 -0.1870 0.2960 0.6024 -0.0440 0.6238 -0.7399 0.0849 0.9323 0.4799 -0.0762 ]

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SECTION 2.2: BOUND-CONSTRAINED LEAST SQUARES %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% More input data
bnds = randn(n,2);
l = min( bnds, ,2 );
u = max( bnds, , 2 );

if has_quadprog,
% Quadprog version
x_qp = quadprog( 2*A’A, -2A’*b, , , , , l, u );

Minimum found that satisfies the constraints.

Optimization completed because the objective function is non-decreasing in
feasible directions, to within the value of the optimality tolerance,
and constraints are satisfied to within the value of the constraint tolerance.

% quadprog not present on this system. end

% cvx version
cvx_begin
variable x(n)
minimize( norm(A*x-b) )
subject to
l <= x <= u
cvx_end

echo off

Results:

norm(Ax_qp-b): 4.1334
norm(A
x-b): 4.1334
cvx_optval: 4.1334
cvx_status: Solved

Verify that l <= x_qp == x <= u:
l = [ -0.5618 0.2760 -0.2277 -0.0290 -0.9287 0.4520 0.1014 -0.3658 ]
x_qp = [ -0.0910 0.2918 0.2746 -0.0290 0.0828 0.4520 0.1014 0.6919 ]
x = [ -0.0910 0.2918 0.2746 -0.0290 0.0828 0.4520 0.1014 0.6919 ]
u = [ -0.0910 0.7395 0.9403 0.1842 0.0828 0.7450 2.4881 0.6919 ]
Residual vector:
A*x-b = [ -0.1209 0.2155 -1.0903 -0.1312 -2.0952 1.6798 0.3784 -0.5592 1.0411 0.6937 1.6036 -0.0045 0.9935 0.2156 1.2186 -1.2228 ]

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SECTION 2.3: OTHER NORMS AND FUNCTIONS: INFINITY NORM %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

if has_linprog,
% linprog version
f = [ zeros(n,1); 1 ];
Ane = [ +A, -ones(m,1) ; …
-A, -ones(m,1) ];
bne = [ +b; -b ];
xt = linprog(f,Ane,bne);

Optimal solution found.

x_lp = xt(1:n,:);
% linprog not present on this system.

end

% cvx version
cvx_begin
variable x(n)
minimize( norm(A*x-b,Inf) )
cvx_end

echo off

Results:

norm(Ax_lp-b,Inf): 0.7079
norm(A
x-b,Inf): 0.7079
cvx_optval: 0.7079
cvx_status: Solved

Verify that x_lp == x:
x_lp = [ -0.0944 0.8498 -0.1119 -1.1311 0.3804 -0.3017 0.2201 0.2488 ]
x = [ -0.0944 0.8498 -0.1119 -1.1311 0.3804 -0.3017 0.2201 0.2488 ]
Residual vector; verify that the peaks match the objective (0.7079):
A*x-b = [ -0.0431 -0.0539 -0.7079 0.7079 -0.7079 -0.7079 -0.1800 0.5049 0.7079 -0.0040 0.7079 -0.7079 -0.1010 0.7079 0.7079 -0.2187 ]

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SECTION 2.3: OTHER NORMS AND FUNCTIONS: ONE NORM %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

if has_linprog,
% Matlab version
f = [ zeros(n,1); ones(m,1); ones(m,1) ];
Aeq = [ A, -eye(m), +eye(m) ];
lb = [ -Inf*ones(n,1); zeros(m,1); zeros(m,1) ];
xzz = linprog(f,,, Aeq,b,lb,);

Optimal solution found.

x_lp = xzz(1:n,:) - xzz(n+1:2*n,:);
% linprog not present on this system

end

% cvx version
cvx_begin
variable x(n)
minimize( norm(A*x-b,1) )
cvx_end

echo off

Results:

norm(Ax_lp-b,1): 5.4711
norm(A
x-b,1): 5.3359
cvx_optval: 5.3359
cvx_status: Solved

Verify that x_lp == x:
x_lp = [ -0.3550 0.8805 -0.0375 -1.1827 0.1694 -0.3870 -0.2148 0.6354 ]
x = [ -0.3550 0.8934 -0.0375 -1.1827 0.1694 -0.3870 -0.2148 0.6712 ]
Residual vector; verify the presence of several zero residuals:
A*x-b = [ -0.7666 0.0129 -1.4977 0.0000 -0.5074 -0.0000 -0.0000 0.0357 0.0000 0.0000 0.0299 -1.0842 -0.0000 1.4013 0.0000 -0.0000 ]

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SECTION 2.3: OTHER NORMS AND FUNCTIONS: LARGEST-K NORM %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% cvx specification
k = 5;
cvx_begin
variable x(n)
minimize( norm_largest(A*x-b,k) )
cvx_end

echo off

Results:

norm_largest(A*x-b,k): 3.5394
cvx_optval: 3.5394
cvx_status: Solved

Optimal vector:
x = [ -0.0944 0.8498 -0.1119 -1.1311 0.3804 -0.3017 0.2201 0.2488 ]
Residual vector; verify a tie for 5-th place ( 0.7079):
A*x-b = [ -0.0431 -0.0539 -0.7079 0.7079 -0.7079 -0.7079 -0.1800 0.5049 0.7079 -0.0040 0.7079 -0.7079 -0.1010 0.7079 0.7079 -0.2187 ]

Perhaps there is a conflicting version of vec in your MATLAB path. See CVX Not Running Quadratic Optimisation - #14 by Mark_L_Stone for possible diagnosis and resolution.

I will give it a look, thanks!

This is the output I have:

C:\Users\user\Documents\MATLAB\cvx\functions@cvx\vec.m % cvx method

C:\Program Files\MATLAB\R2024b\toolbox\shared\msblks_measurement\msblks_measurement@eyeDiagramSI\vec.p % eyeDiagramSI method

I was doing some eye diagrams earlier. Will see if that fixes it