I'm working to smooth data coming from an accelerometer using Maximum A Posteriori Estimation. Following a tutorial paper, I get this expression (a simplified version of equation 4.10 on p.34):
$$argmin\sum_{t=2}^N ||e_{a,t}||^2_{\sum^{-1}}$$
where $e_{a,t} \sim \mathcal{N}(0, \sum_a)$ and $\sum_a$ is a 3x3 covariance matrix.
I've found answers on C.V. on how to evaluate the p-norm with an integer, but not with a matrix. How do you evaluate $||e_{a,t}||^2_{\sum^{-1}}$? Is this still a p-norm?