Create MATLAB standalone application that uses CVX

Need help.
How to create standalone application from MATLAB that uses CVX?

I followed the instruction from Create Standalone Application from MATLAB Function - MATLAB & Simulink to create a standalone application from a simple cvx_test2.m.

However, got this error for the line cvx_begin:

Dot indexing is not supported for variables of this type.
Error in cvx_global (line 76)
Error in cvxprob (line 4)
Error in cvx_begin (line 41)
Error in cvx_test2 (line 10)
MATLAB:structRefFromNonStruct

Version details:

MATLAB: MATLAB R2022b academic license
Linux OS: Ubuntu 20.04 LTS
CVX: version 2.2

Please advise whether I need to take care of some option settings while building standalone application with CVX or this is not supported.

Thanks.

Thhs is not supported, and as far as i know, it’s not possible. However, if you are clever and resourceful enough, perhaps you can figure out a way to do it. But you’re on your own.

Thank you Mark for the prompt answer. I will look for alternative then.