From: Michael Orlitzky Date: Thu, 15 Nov 2012 06:48:10 +0000 (-0500) Subject: Add semicolons. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=octave.git;a=commitdiff_plain;h=6f4b337984a4abff81123a14496a59f9f4a0351d;ds=sidebyside Add semicolons. --- diff --git a/c_inner_product.m b/c_inner_product.m index 0ff7f96..1d7bfd1 100644 --- a/c_inner_product.m +++ b/c_inner_product.m @@ -19,6 +19,6 @@ function ip = c_inner_product(w, a, b, v1, v2) ## ## The inner product . ## - integrand = @(x) w(x)*v1(x)*v2(x) - ip = quad(integrand, a, b) + integrand = @(x) w(x)*v1(x)*v2(x); + ip = quad(integrand, a, b); end