Hi.
I need to do max. likelihood for an objective likelihood function L (minimize it), and the target is a matrix. ie:
$$min_KL(K)$$
For example: K is, let's say, of size 3x3 and with initial value of ones ($k_{i,j}=1∀i,j$). L is $L=∥\nabla(K)∥$ or $L=∥K∥^{1.1}$.
I know how to do gradient descend etc., but here I need to minimize the function L by iterating over K and I don't really know how to approach it. I'd expect something of this sort: $K:=K-f(\nabla(L))$, but I don't know what.
*note: It might have something to do with the Euler-Largange method ($L_x-L_t\left(L_{x'}\right)=0$) but I'd have to do it iteratively if any...
Appreciate any help.

