Skip to content

Instantly share code, notes, and snippets.

@elder
Created July 3, 2010 00:52
Show Gist options
  • Save elder/462150 to your computer and use it in GitHub Desktop.
Save elder/462150 to your computer and use it in GitHub Desktop.
#!/usr/bin/awk -f
#
# Programa para calcular média e desvio padrão em awk
#-----------------------------------------------------------------------
{
soma+=$1
somaquad+=$1*$1
}
END {
media=soma/NR
desvpad=sqrt((somaquad - NR*media**2)/(NR - 1))
printf "%.1f(%.1f)\n", media, desvpad
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment