X-Git-Url: http://gitweb.michael.orlitzky.com/?p=octave.git;a=blobdiff_plain;f=divided_difference_coefficients.m;h=92e991575b54460cbf3475ebb92e68d7faa8253f;hp=a40f5597d6b47712ad7e0b397585d71641b80ec8;hb=b12c6c2a4bf4cef29b2e08b743c92889505c7ed9;hpb=e1b71b4ca7cfa08ac76744a17a3778d4ccfaa7e2 diff --git a/divided_difference_coefficients.m b/divided_difference_coefficients.m index a40f559..92e9915 100644 --- a/divided_difference_coefficients.m +++ b/divided_difference_coefficients.m @@ -1,15 +1,15 @@ function coefficients = divided_difference_coefficients(xs) - ## Compute divided difference coefficients of `f` at points `xs`. - ## - ## INPUTS: - ## - ## * ``xs`` - A vector containing x-coordinates. - ## - ## OUTPUTS: - ## - ## * ``coefficients`` - The vector of coefficients such that - ## dot(coefficients, f(xs)) == f[xs]. Used to solve linear systems. - ## + % Compute divided difference coefficients of `f` at points `xs`. + % + % INPUTS: + % + % * ``xs`` - A vector containing x-coordinates. + % + % OUTPUTS: + % + % * ``coefficients`` - The vector of coefficients such that + % dot(coefficients, f(xs)) == f[xs]. Used to solve linear systems. + % coefficients = [];