# File lib/graphviz/math/matrix.rb, line 124
      def line( line )
        unless (0...@line).to_a.include?(line-1)
          raise CoordinateError, "Line out of range (#{line} for 1..#{@line})!"
        end
        @matrix[line-1]
      end