view examples/@polynomial/numel.m @ 17511:cd98a50bfa63

hidden.m: Fix hidden so that it also works for trimesh objects. * scripts/plot/trimesh.m: Set "Tag" property of patch object to "trimesh". * scripts/plot/hidden.m: Search for surface objects or objects with Tag "trimesh".
author Rik <rik@octave.org>
date Wed, 25 Sep 2013 16:00:09 -0700
parents e903c92d2f02
children
line wrap: on
line source

function n = numel (obj, idx)

  # always produce an array.
  n = 1;

endfunction