hi. i have a quick question regarding fortran 90. i often need to add a vector to a 2d dimensional array, and i find it a bit to 'bulky' to always use do loops.
let's say i have this:
do i=1, 20
a(:, i)=a(:, i)+b(:)
end do
is there a simple(r) way to tell fortran that i want to...