I have a problem to align two blocks of equations within a split command. I would like the "subject to" in the following code, to be aligned to the left (where the miinimize function starts), but I also need the two constraint equations to be aligned with each other. This is the code I have so far:
\documentclass[review]{elsarticle}
\usepackage{siunitx} % Formats the units and values
\usepackage[fleqn]{amsmath}
\usepackage{xfrac}
\allowdisplaybreaks
\begin{document}
\begin{align}
\begin{split}
\min_{u,v}\sum_{m=1}^{M} \bigg[ p_m \cdot \sum_{k=-N+1}^{0} \Big(
&w_x \left\| \hat{x}^k-x^{k,m}(u) \right\| + \Big. \bigg. \\
& \bigg. \Big. w_y\lVert \hat{y}^k-y^{k,m}(u,v) \rVert +
w_u\lVert u^k \rVert + w_v\lVert v^k \rVert \Big) \bigg]
\end{split} \\
\text{subject to:}\quad &u_L\leq u^k \leq u_U \\
&u_L\leq u^k \leq u_U
\end{align}
\end{document}
Any suggestion?


\bigg( … \bigg)and the like with pairs of\biggl( … \biggr). This provides a better horizontal spacing around delimiters. – Bernard Oct 23 '16 at 20:26