I have been trying to solve the regularized least square problem of
min||Gm-d||^2 + a ||Lm||^2
using first order Tikhonov regularization method.
the general form of L for calculating the first derivative of m is
L1={{-1,1,0,0,...,0},{0,-1,1,0,0,...,0}, ...,{0,0,...,-1,1}
Given that the matrix G is a 50x50 lower triangular matrix, what would be the components of L1? I mean obviously it cannot be a 50x50 matrix, as the last row will be {0,0,...,-1}.
The answer is L should be 49x50 matrix