Question: Display of Matrix elements

I have a matrix for which the elements have imaginary components which are quite small. For purposes of readabililty I removed the imaginary components as follows: A:=map(x->Re(x),A); However, I was wondering - Is there any I could have displayed the matrix showing just the real components without actually getting rid of the imaginary ones? Also, the components are displaying to 10 decimal digits which is awkward. I know if I set Digits:=5 for example, the diaplay would be more readable but I don't want the calculations to be done with that level of precision. Is there any way I can set the level of display of digits without affecting the digits used in calculations?
Please Wait...