Are you trying to use the symbolic toolbox int? That’s not allowed in CVX. Why isn’t CVX accepting my model? READ THIS FIRST!
Are you really trying to integrate normcdf, or do you want to integrate normpdf? Either way, I think you’re out of luck, unless you can get a CVX-legal series representation of that multiplied with the norm term. There is a CVX approximation, log_norm_cdf to the log of normcdf, but then you’d have a log(norm) term which would not be accepted by CVX.
So the bottom line is I think you need a series representation of -int(@(x) normcdf(x),x,-Inf, zalpha)) * norm((T.' * x),2)) which is convex and follows CVX’s rules. I am not saying any such series exists, or that would be a good enough approximation. Potentially, you could do series expansion about an initial point, solve the CVX problem, then expand about the CVX solution, re-solve in CVX, etc. BUt you’re probably better off solving it with a general nonlinear programming solver (not using CVX).
Or perhaps your model formulation can be changed. But fi so, that is for you to do.