#!/bin/bash
# your code goes here
x=-1
y=-1
freq=15
Ampl=10
sigma=0.5

freq=`echo ${freq}*3.1416 | bc`

for i in `seq 0 199`
do
	x=`echo ${x} + 0.01 | bc`
	y=-1
	for j in `seq 0 199`
	do
		y=`echo ${y} + 0.01 | bc`
		#echo ${x} ${y} ${freq} ${Ampl} ${sigma}
		./wave ${x} ${y} ${freq} ${Ampl} ${sigma}
	done
	echo -e '\n'
done
