Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
subroutine setA (x, y, val)
integer, intent(in):: x, y
double precision:: val
A(x,y) = val
end subroutine
double precision function getA (x, y)
return A(x,y)
end function