The common modulus methods are standard modulus (the result is confined to the range $[0, q-1]$) and centered modulus (the result is confined to the range $[- \lfloor q/2 \rfloor, \lceil q/2 \rceil)$).
My questions is:In lattice-based cryptography, should we use standard modulus or centered modulus? Or are they equivalent?
For example, given a matrix $ \mathbf{A} \in \mathbb{Z}_q^{n \times m} $ and a short vector $ \mathbf{x} \in D_{\sigma}^{m} $ drawn from a discrete Gaussian distribution with center 0 and standard deviation $\sigma$, should we use standard modulus or centered modulus when computing $ \mathsf{A} \cdot \mathbf{x} $?
The norm $\|\mathsf{x}\|_{\infty}$ seems to be defined on a centered modulus, so I suspect that a centered modulus can be chosen, but I'm not entirely sure.
Thank you in advance for your help.