From 187ab8368c39a3fd459d5715c91a71104413299a Mon Sep 17 00:00:00 2001 From: wukong Date: Fri, 1 Mar 2019 23:00:02 -0800 Subject: updated shebang and comment in hamming.sh --- hamming.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hamming.sh') diff --git a/hamming.sh b/hamming.sh index b466325..9347388 100644 --- a/hamming.sh +++ b/hamming.sh @@ -1,10 +1,10 @@ -#!/bin/bash +#!/usr/bin/env bash ### hamming.sh # Convolve input vector with 3-element Hamming window [0.23, 0.54, 0.23] # note: bash built-in $(( )) construct only supports integer arithmetic -# floating point operations will require another language such as awk, perl, -# python, etc. +# floating point operations will require a calculator or another language +# such as awk, perl, python, etc. ### input vector as array X=($1) -- cgit v1.2.3