view examples/@polynomial/numel.m @ 15175:5984aa619cd9

doc: Remove multiple seealso links to I (bug #37046). arith.txi: Remove multiple doc-anchors to I data.cc: Remove multiple seealso links (i,j,J) to I.
author Rik <rik@octave.org>
date Tue, 14 Aug 2012 21:32:26 -0700
parents e903c92d2f02
children
line wrap: on
line source

function n = numel (obj, idx)

  # always produce an array.
  n = 1;

endfunction