]> gitweb.michael.orlitzky.com - octave.git/blobdiff - c_norm.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / c_norm.m
index 865ff8b472a566b0dfd3f5237939b575206352ea..5a4fdc16419f0acb02b07357f3fc9b5b6010eb85 100644 (file)
--- a/c_norm.m
+++ b/c_norm.m
@@ -1,20 +1,20 @@
 function c_norm = c_norm(w, a, b, v)
-  ##
-  ## The norm on C[a,b] induced by c_inner_product.
-  ##
-  ## INPUT:
-  ##
-  ##   * ``w`` -- The weight function.
-  ##
-  ##   * ``a`` -- The left endpoint of the interval.
-  ##
-  ##   * ``b`` -- The right endpoint of the interval.
-  ##
-  ##   * ``v`` -- The vector.
-  ##
-  ## OUTPUT:
-  ##
-  ## The norm of `v`; that is, the inner product sqrt(<v, v>).
-  ##
+  %
+  % The norm on C[a,b] induced by c_inner_product.
+  %
+  % INPUT:
+  %
+  %   * ``w`` -- The weight function.
+  %
+  %   * ``a`` -- The left endpoint of the interval.
+  %
+  %   * ``b`` -- The right endpoint of the interval.
+  %
+  %   * ``v`` -- The vector.
+  %
+  % OUTPUT:
+  %
+  % The norm of `v`; that is, the inner product sqrt(<v, v>).
+  %
   c_norm = sqrt(c_inner_product(w, a, b, v, v));
 end