I'm confused how to express the following expressions in math equations for publication:
- $x =$ integer part of $y$
- $x =$ fraction part of $y$
- image $x =$ shifted version of image $y$ left with $z$ pixels.
- image $x =$ shifted version of image $y$ up with $z$ pixels.
I thought about this: $x =$ intPart$(y)$ and image$_x =$ shiftLeft$(y, z)$. But they are programming style more than math equations. Any hints ?
$\lfloor y \rfloor $ denotes usually the integer part of $ y $, $\{ y \} $ denotes the fractional part of $ y $ ($\{ y \} =y-\lfloor y \rfloor $). And sorry, but I have no idea what does "image x = shifted version of image y up with z pixels." mean. And I wouldn't use $[y]$ to represent the integer part of $y$, since it can be easily confused (for example in $[5+(6-1)]=x$, $[y]$ doesn't represent the integer part).