view extra/integration/zero_count.m @ 0:6b33357c7561 octave-forge

Initial revision
author pkienzle
date Wed, 10 Oct 2001 19:54:49 +0000
parents
children
line wrap: on
line source

function num_fxpow=zero_count
%
%usage:  num_fxpow=zero_count
%
global NUM_COUNT

if ( exist('NUM_COUNT') == 1 )
  num_fxpow=NUM_COUNT;
endif

NUM_COUNT=0;

endfunction