This will do the conversion:
awk '{print $1, $2, $3 * 10**$4}' file.csv
Assuming:
- There is an space bettween the e and the actual exponent.
- The exponent is the last field of each line.
If an specific format is needed, some form of printf
could be used.
For example:
awk '{printf( "%s %s %g "ORS,$1,$2,$3*10**$4)}' file.csv
could print this:
1 1 1423
1 2 1589
1 3 85000
1 4 8900
1 5 8796
2 8 2.589e+28
Last line added to show final format for big exponents.