We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7805319 commit cbde0eaCopy full SHA for cbde0ea
perf.f90
@@ -66,6 +66,7 @@ real(dp) function mean(x) result(t)
66
67
real(dp) function std(x) result(t)
68
real(dp), intent(in) :: x(:)
69
+integer :: n
70
n=size(x)
71
t = sqrt(sum(x**2)/n -(sum(x)/n)**2)
72
end function
0 commit comments