Of OP's two requirements
- center the column headings and
- remove all the trailing decimal points.
@bbgodfrey's answer addresses the second.
Unfortunately, getting both requirements, i.e.,
to center just the column headings while keeping the values decimal/right aligned.
using TableForm is impossible since TableAlignments is not flexible enough to align individual rows, columns or items separately. That is, aligments can only be specified for each dimension (rows and/or columns), and row (column) headers inherit the alignment settings of the rows (columns). This can be seen by modifying the input matrix m in bbgodfrey's answer:
m = Table[IntegerPart[cosine[r, t]], {r, 1000, 10000, 1000}, {t, 0.5, 2., .5}];
mb = RandomChoice[{1, 100, 10000}] # & /@ m;
rows = 1000 Range[10]; cols = .5 Range[4];
Column[Table[Labeled[Grid[{Table[TableForm[i, TableHeadings -> {rows, cols},
TableAlignments -> j], {i, {m, mb}}]}, ItemSize -> All, Dividers -> All],
Style[TableAlignments -> j, 16], Top], {j, {Right, Center}}], Spacer[15], Dividers -> All]

A work-around is to wrap column headings with Pane or Framed:
TableForm[mb, TableHeadings -> {rows,
Pane[#, ImageSize -> {Scaled[.1], Automatic}, Alignment -> Center] & /@ cols},
TableAlignments -> Right]

Using Grid:
A much more flexible approach is to use Grid. To useGridwe need to add row and column headers to the input matrixmb`. This can be done in a number of ways using any of the methods suggested in this answer to the OP's related question. For example,
hF = Fold[Prepend[Transpose@#, #2] &, #, {#2, Join @@ {{""}, #3}}] &;
mb2 = hF[mb, rows, cols];
Now, we can use Item with the option Alignment->Center to modify the the first row of mb2
mb3 = mb2;
mb3[[1]] = Item[#, Alignment -> Center] & /@ mb3[[1]];
Grid[mb3, Dividers -> {2 -> True, 2 -> True}, Alignment -> Right]

Alternatively, we can use the third element of the Alignment option settings for Grid to set the alignments for the elements in the first row:
Grid[mb2, Dividers -> {2 -> True, 2 -> True},
Alignment -> {Right, Center, MapIndexed[{1, 1 + First@#2} -> Center &, cols]},
ItemStyle -> {{Directive[Red, 20, Italic, "Panel"]}, {Directive[Blue, 20, Italic, "Panel"]}}]

PaneorFrame(both with the optionAlignment->Center) to wrap each of the column headers and experiment with different values forImageSize. – kglr Feb 15 '15 at 21:46