view mononomial.m @ 660:184833fe4c0e feature/grids

Add monomial, vandermonde and stencil cretation tools
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 14 Nov 2017 16:46:07 +0100
parents
children 0090a86d8b72
line wrap: on
line source

function y = mononomial(x, k)
    if k < 0
        y = x*0;
        return
    end
    y = x.^k/factorial(k);
end