I'm trying to implement the gradient descent method for the problem of minimising the following function:
$$f(x) = \frac{1}{2}(x-m)^{T}A(x-m)-\sum\limits_{i=1}^n\log\left(x_i^{2}\right),$$
where $x \in R^n$ is a vector; $m \in R^n$ is a fixed vector; and $A$ is a fixed positive definite matrix.
The only applications of gradient descent I have come across is for linear regression! So, as a starting point for helping me to solve this, I'd like to know in what situations this cost function would be applied. Does anyone out there recognise it?