Mercurial > hg > octave-lyh
view examples/@polynomial/mtimes.m @ 16660:cbb1bb7a5c3d
Added tag ss-3-7-5 for changeset 608e307b4914
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 14 May 2013 05:23:53 -0400 |
parents | 1b48b209a8d6 |
children |
line wrap: on
line source
function y = mtimes (a, b) y = polynomial (conv (double (a), double (b))); endfunction