Answers for "rmsd using awk"

0

rmsd using awk

cat yourfile | awk '{s++; t+=($1-$2)^2}END{print sqrt(t/s)}'  > out.rmsd

$1 and $2 are the column in yourfile
Posted by: Guest on October-15-2021

Browse Popular Code Answers by Language