Mercurial > hg > octave-nkf
view examples/code/@polynomial/end.m @ 20741:dcfbf4c1c3c8
eliminate trailing whitespace and tabs from sources
* Canvas.cc, Canvas.h, Figure.cc, gl-render.h,
graphics.cc, ov-fcn-handle.cc, ov-java.cc, Range.cc, CmplxCHOL.cc,
dbleCHOL.cc, floatCHOL.cc: Eliminate trailing whitespace and tabs used
for indentation.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 01 Oct 2015 12:50:00 -0400 |
parents | 0e1f5a750d00 |
children |
line wrap: on
line source
function r = end (obj, index_pos, num_indices) if (num_indices != 1) error ("polynomial object may only have one index") endif r = length (obj.poly) - 1; endfunction