- 论坛徽章:
- 18
|
- [root@hp8:~]# cat file
- 90.0000 33.0000 3.0841 0.0000 -0.0052
- 90.5000 33.0000 3.0787 0.0003 -0.0071
- 91.0000 33.0000 3.0694 0.0005 -0.0094
- 91.5000 33.0000 3.0564 0.0006 -0.0116
- [root@hp8:~]# cat file|awk '{a1=$1;a2=$2;m=a1*a1+a2*a2;n=a1/a2;cmd1="echo \"scale=4; sqrt("m")\"|bc -l";cmd1|getline a;cmd2="echo \"scale=4; 0.5*a("n")\"|bc -l";cmd2|getline t;print$1,$2,$3,a,t}'
- 90.0000 33.0000 3.0841 95.8592 .6096
- 90.5000 33.0000 3.0787 96.3288 .6105
- 91.0000 33.0000 3.0694 96.7987 .6114
- 91.5000 33.0000 3.0564 97.2689 .6123
- [root@hp8:~]#
复制代码 回复 1# tengfei0311
|
|