From 6f4b337984a4abff81123a14496a59f9f4a0351d Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 15 Nov 2012 01:48:10 -0500 Subject: [PATCH] Add semicolons. --- c_inner_product.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.43.2