1
0
mirror of https://github.com/saitohirga/WSJT-X.git synced 2025-04-15 15:58:49 -04:00
WSJT-X/qmap/libqmap/dot.f90

12 lines
126 B
Fortran
Raw Permalink Normal View History

real*8 function dot(x,y)
real*8 x(3),y(3)
dot=0.d0
do i=1,3
dot=dot+x(i)*y(i)
enddo
return
end function dot