]> gitweb.michael.orlitzky.com - octave.git/blobdiff - divided_difference_coefficients.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / divided_difference_coefficients.m
index a40f5597d6b47712ad7e0b397585d71641b80ec8..92e991575b54460cbf3475ebb92e68d7faa8253f 100644 (file)
@@ -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 = [];