changeset 19723:894b5c5e0b92

Add missing semicolon to cset 8724af455b11. * freqz.m: Suppress accidental output of 'f' vector.
author Rik <rik@octave.org>
date Tue, 10 Feb 2015 09:21:54 -0800
parents 8724af455b11
children bd1369a2a651
files scripts/signal/freqz.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/signal/freqz.m	Mon Feb 09 16:24:53 2015 -0500
+++ b/scripts/signal/freqz.m	Tue Feb 10 09:21:54 2015 -0800
@@ -158,7 +158,7 @@
     if (whole_region)
       N = n;
       if (plot_output)
-        f = Fs * (0:n).' / N     # do 1 more for the plot
+        f = Fs * (0:n).' / N;    # do 1 more for the plot
       else
         f = Fs * (0:n-1).' / N;
       endif