view mononomial.m @ 744:94bd0f3293c8 feature/grids

SBPInTimeSecondOrderForm: Scale the system acording to C by default
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 28 Mar 2018 12:47:53 +0200
parents 184833fe4c0e
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