# File nmatrix.rb, line 123
  def transpose(*arg)
    if arg.size==0
      super(1,0)
    else
      super
    end
  end