rb_mv_mult Subroutine

private subroutine rb_mv_mult(self, vect)

Matrix vector multiplication stored in tmp_sum

Type Bound

rowblock_type

Arguments

Type IntentOptional Attributes Name
class(rowblock_type), intent(inout) :: self
complex, intent(in), dimension(self%ncol) :: vect

Contents

Source Code


Source Code

  subroutine rb_mv_mult(self,vect)
    implicit none
    class(rowblock_type), intent(inout) :: self
    complex,dimension(self%ncol), intent(in) :: vect
    self%tmp_sum=self%mv_mult_fun(vect)
  end subroutine rb_mv_mult