Mercurial > hg > octave-nkf
view examples/@polynomial/mtimes.m @ 15481:85e3ebc11da4
* variables.cc (bind_internal_variable): Tag with GCC_ATTR_DEPRECATED.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 03 Oct 2012 03:16:48 -0400 |
parents | 1b48b209a8d6 |
children |
line wrap: on
line source
function y = mtimes (a, b) y = polynomial (conv (double (a), double (b))); endfunction