view examples/@polynomial/numel.m @ 13822:38e3bfc4e076

provide default message for waitbar * waitabar.m: If no message is supplied for a new waitbar object, set messge to "Please wait...".
author John W. Eaton <jwe@octave.org>
date Fri, 04 Nov 2011 16:40:07 -0400
parents e903c92d2f02
children
line wrap: on
line source

function n = numel (obj, idx)

  # always produce an array.
  n = 1;

endfunction