view examples/@polynomial/roots.m @ 15880:df1aceb8f0bc ss-3-7-1

snapshot version 3.7.1 * configure.ac (AC_INIT): Set version to 3.7.1. (OCTAVE_RELEASE_DATE): Set to 2013-01-02.
author John W. Eaton <jwe@octave.org>
date Wed, 02 Jan 2013 15:16:08 -0500
parents 567e3e4ab74d
children
line wrap: on
line source

function y = roots (p)
  y = roots(fliplr(p.poly));
endfunction