comparison scripts/signal/periodogram.m @ 19230:9e3c35d934ab

doc: Periodic spell check of documentation. * aspell-octave.en.pws: Add new words to custom Octave dictionary. * plot.txi: Correct typo "informations" to "information". * data.cc (Fdiag): Use superdiagonal and subdiagonal instead of hyphenated versions. * tril.cc (Ftril): Use superdiagonal and subdiagonal instead of hyphenated versions. * vech.m: Use superdiagonal instead of supradiagonal. * surfnorm.m: Correct typo "returne" to "returned". * periodogram.m: Use "one-sided" rather than "onesided", "two-sided" rather than "twosided".
author Rik <rik@octave.org>
date Thu, 21 Aug 2014 09:51:18 -0700
parents 956fc864c39f
children 0f9c5a15c8fa
comparison
equal deleted inserted replaced
19229:d900f863335c 19230:9e3c35d934ab
58 ## [0..nfft/2+1]. @qcode{"@nospell{twosided}"} computes spectrum from 58 ## [0..nfft/2+1]. @qcode{"@nospell{twosided}"} computes spectrum from
59 ## [0..nfft-1]. 59 ## [0..nfft-1].
60 ## @end table 60 ## @end table
61 ## 61 ##
62 ## The optional second output @var{w} are the normalized angular frequencies. 62 ## The optional second output @var{w} are the normalized angular frequencies.
63 ## For a onesided calculation @var{w} is in the range [0, pi] if @var{nfft} 63 ## For a one-sided calculation @var{w} is in the range [0, pi] if @var{nfft}
64 ## is even and [0, pi) if @var{nfft} is odd. Similarly, for a twosided 64 ## is even and [0, pi) if @var{nfft} is odd. Similarly, for a two-sided
65 ## calculation @var{w} is in the range [0, 2*pi] or [0, 2*pi) depending on 65 ## calculation @var{w} is in the range [0, 2*pi] or [0, 2*pi) depending on
66 ## @var{nfft}. 66 ## @var{nfft}.
67 ## 67 ##
68 ## If a sampling frequency is specified, @var{Fs}, then the output frequencies 68 ## If a sampling frequency is specified, @var{Fs}, then the output frequencies
69 ## @var{f} will be in the range [0, @var{Fs}/2] or [0, @var{Fs}/2) for 69 ## @var{f} will be in the range [0, @var{Fs}/2] or [0, @var{Fs}/2) for
70 ## onesided calculations. For twosided calculations the range will be 70 ## one-sided calculations. For two-sided calculations the range will be
71 ## [0, @var{Fs}). 71 ## [0, @var{Fs}).
72 ## 72 ##
73 ## When called with no outputs the periodogram is immediately plotted in the 73 ## When called with no outputs the periodogram is immediately plotted in the
74 ## current figure window. 74 ## current figure window.
75 ## @seealso{fft} 75 ## @seealso{fft}