Quesition on Objective Formulation

Hello,

I am new to CVX, I have read the documentation and formulated my problem but I would like to make sure that my formulation is correct so I have the following question:

I have a vector variable F(n) and my objective is to find: Minimize (Max( 1/F(1), 1/F(2), …, 1/F(n)) ). I used the following syntax to express this:

Variable F(n)
minimize(max(pow_p(F,-1)))

is this the right way to do it?
Thanks in advance,
Mehiar

inv_pos would work instead of pow_p, too.

Thank you mcg
I also wanted to make sure that the Max() in CVX takes the max value of the vector, right?

This forum is not a substitute for reading the documentation nor, for that matter, trying it yourself.