I want to select an even rows of matrix. How can I show it using mathematical notations.
Something like this:
$X_{i:}$ where i is even.
I want to select an even rows of matrix. How can I show it using mathematical notations.
Something like this:
$X_{i:}$ where i is even.
even indices:
$X_{2i}$
uneven indices can be expressed as
$X_{2i+1}$
Of course this changes the range for $i$.