Hi,

I need to multiply 1st column (comma seperated) of entire file by a value say 2 without disturbing file format.

Suppose the file is:

 1.000    1.000             0

    1.000    2.000             0

    1.000    3.000             6

    1.000    4.000             6

    1.000    5.000             0

    1.000    6.000             0

    1.000    7.000             7

    1.000    8.000             7

    1.000    9.000             7

    1.000   10.000             0

    1.000   11.000             6

    1.000   12.000             4

    1.000   13.000             4

    1.000   14.000             4

    1.000   15.000             4

    1.000   16.000             0

    1.000   17.000             0

    1.000   18.000             0

    1.000   19.000             7

    1.000   20.000             7

    1.000   21.000             0

    1.000   22.000             0

    1.000   23.000             7

    1.000   24.000             0

    1.000   25.000             0

    1.000   26.000             6

    1.000   27.000             6

    1.000   28.000             6

    1.000   29.000             7

    1.000   30.000             7

    1.000   31.000             7

    1.000   32.000             7

    1.000   33.000             3

    1.000   34.000             3

    1.000   35.000             3

    1.000   36.000             3

    1.000   37.000             6

    1.000   38.000             0

    1.000   39.000             0

    1.000   40.000             0

    1.000   41.000             0

    1.000   42.000             0

    1.000   43.000 0

New file should be (1st column value multiplied by 2):

    2.000    1.000             0

    2.000    2.000             0

    2.000    3.000             6

    2.000    4.000             6

    2.000    5.000             0

    2.000    6.000             7

    2.000    7.000             7

    2.000    8.000             7

    2.000    9.000             7

    2.000   10.000             0

    2.000   11.000             6

    2.000   12.000             4

    2.000   13.000             4

    2.000   14.000             4

    2.000   15.000             4

    2.000   16.000             0

    2.000   17.000             0

    2.000   18.000             0

    2.000   19.000             7

    2.000   20.000             7

    2.000   21.000             0

    2.000   22.000             0

    2.000   23.000             7

    2.000   24.000             0

    2.000   25.000             0

    2.000   26.000             6

    2.000   27.000             6

    2.000   28.000             6

    2.000   29.000             7

    2.000   30.000             7

    2.000   31.000             7

    2.000   32.000             7

    2.000   33.000             3

    2.000   34.000             3

    2.000   35.000             3

    2.000   36.000             3

    2.000   37.000             6

    2.000   38.000             0

    2.000   39.000             0

    2.000   40.000             0

    2.000   41.000             0

    2.000   42.000             0

    2.000   43.000 0

More Saman Yousuf Ali's questions See All
Similar questions and discussions