MATLAB: Removing the integral part of number from a matrix

i have a matrix: A=[9.875 1.234 0.987 2.341] How can i remove integral part of the matrix. After removing the integral part output is
A=[ 0.875 0.234 0.987 0.341]
Please help…

Best Answer

A - fix(A)