If I have a data file with columns of numbers like
3.14
0.42
6.66
Is there a way from within Vim that I can manipulate these with operations such as addition, subtraction and division? For instance, say I wanted to add 2.1 to each number in a column, how would I go about this? a
I can do it by piping to for instance awk, but I would like to know if there's a builtin method, and I haven't found anything in the help files.