Facing Error in CVX_matlab log_normcdf() function
Show older comments
in MATLAB Version: 9.12.0.1884302 (R2022a)
Using CVX_Matlab:
CVX: Software for Disciplined Convex Programming (c)2014 CVX Research
Version 3.0beta, Build 1183 (dda2109)
I get Error when using this Code:
clc;clear;close all;
% Load Data From team_data.m file in the directory
team_data;
A1 = sparse(1:m,train(:,1),train(:,3),m,n);
A2 = sparse(1:m,train(:,2),-train(:,3),m,n);
A = A1+A2;
cvx_begin
variable a_hat(n)
minimize(-sum(log_normcdf(A*a_hat/sigma)))
subject to
a_hat >= 0
a_hat <= 1
cvx_end
%%
The Error happens when using --> log_normcdf(A*a_hat/sigma) --->

which says:
****************************************************************
Unrecognized function or variable 'vx'.
vx = repmat( reshape( vx, sx ), bx );
z = cvx_binary_op( P, x, y );
z = func( x, y, varargin{:} );
y = bsxfun( @times, a, bsxfun( @minus, b, x ) );
y = p.funcs{abs(vu)}( vec(x), varargin{:} );
y = cvx_unary_op( P, x );
****************************************************************
Can anyone help me?
Answers (0)
Categories
Find more on Programming in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!