XiongPengNUS / rsome

Robust Stochastic Optimization Made Easy
GNU General Public License v3.0
282 stars 54 forks source link

Lexicon #56

Closed walidzegal closed 8 months ago

walidzegal commented 8 months ago

Do you have a document explaining the lexicon that you use in the modeling code? for example, rv@rv.T, rso.tril,rso.rstack,...in test_sdp_ro.py.

XiongPengNUS commented 8 months ago

The @ operator is used for matrix multiplication, and it is the same as in NumPy package. You may access the documentation of functions like rso.tril, rso.rstack using the help function. For example help(rso.tril).