view examples/@polynomial/numel.m @ 10843:229675bb7647 ss-3-3-52

version is now 3.3.52
author John W. Eaton <jwe@octave.org>
date Sun, 01 Aug 2010 11:49:45 -0400
parents e903c92d2f02
children
line wrap: on
line source

function n = numel (obj, idx)

  # always produce an array.
  n = 1;

endfunction