comparison examples/polynomial/mtimes.m @ 8223:0c91b9a17dcf

Commit missing files from previous change
author David Bateman <dbateman@free.fr>
date Thu, 16 Oct 2008 09:20:58 +0100
parents
children
comparison
equal deleted inserted replaced
8222:11badf6c9e9f 8223:0c91b9a17dcf
1 function y = mtimes (a, b)
2 ap = double (a);
3 bp = double (b);
4 y = polynomial (filter (ap, 1, [bp(:).', zeros(1, length(bp) - 1)]));
5 endfunction