shape_matrix Function

public function shape_matrix(self) result(shape)

Type Bound

sparse_matrix

Arguments

Type IntentOptional Attributes Name
class(sparse_matrix), intent(in) :: self

Return Value integer, dimension(2)


Called by

proc~~shape_matrix~~CalledByGraph proc~shape_matrix sparse_matrix%shape_matrix interface~shape shape interface~shape->proc~shape_matrix

Source Code

   function shape_matrix(self) result(shape)
     class(sparse_matrix),intent(in) :: self
     integer,dimension(2)            :: shape
     shape = [self%Nrow,self%Ncol]
   end function shape_matrix