gpt4 book ai didi

bash - 在 bash 中使用 sin 和 cos 数学函数

转载 作者:行者123 更新时间:2023-12-05 01:02:58 24 4
gpt4 key购买 nike

我有一个文本文件包含这样的数据列:

 col1     col2    col3    col4   col5  col6    col7   col8    col9  col10

50.000 7.920 0.509 11.2 2.60 192.7 25.71 0.3490 188.6 17.81
50.170 7.920 0.609 12.2 2.72 211.7 26.17 0.3326 213.8 18.19
50.330 7.920 0.712 14.1 2.92 218.9 28.17 0.3228 215.1 21.73
...

我想创建另一个从第一个文件派生的分隔文本文件(使用 bash 脚本),其列的值如下:

col1      col2      col3      col3*[-sin(col6)]     col3*[-cos(col6)]
...

sin 是正弦函数,cos 是数学中的余弦函数。我该怎么做?

提前致谢。

最佳答案

试试这个 awk 命令,

awk '{var=$3*-sin($6); foo=$3*-cos($6); print $1,$2,$3,var,foo;}' file

关于bash - 在 bash 中使用 sin 和 cos 数学函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23854380/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com