From ea7dcdba3b83696b97cc431ee050b58f9a0f3507 Mon Sep 17 00:00:00 2001 From: avinashlalotra Date: Sat, 26 Apr 2025 20:09:12 +0530 Subject: formated source documentation pattern for generating docs --- macros/mscohere.sci | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'macros/mscohere.sci') diff --git a/macros/mscohere.sci b/macros/mscohere.sci index b9a45f8..4411a5c 100644 --- a/macros/mscohere.sci +++ b/macros/mscohere.sci @@ -1,17 +1,17 @@ -/*Description: -Estimate (mean square) coherence of signals x and y. Use the Welch (1967) periodogram/FFT method. -Calling Sequence: - [Pxx, freq] = mscohere (x, y) - […] = mscohere (x, y, window) - […] = mscohere (x, y, window, overlap) - […] = mscohere (x, y, window, overlap, Nfft) - […] = mscohere (x, y, window, overlap, Nfft, Fs) - […] = mscohere (x, y, window, overlap, Nfft, Fs, range) - mscohere (…) -See "help pwelch" for description of arguments, hints and references -Dependencies : pwelch -*/ function varargout = mscohere(varargin) +// Estimate (mean square) coherence of signals x and y. Use the Welch (1967) periodogram/FFT method. +// Calling Sequence: +// [Pxx, freq] = mscohere (x, y) +// […] = mscohere (x, y, window) +// […] = mscohere (x, y, window, overlap) +// […] = mscohere (x, y, window, overlap, Nfft) +// […] = mscohere (x, y, window, overlap, Nfft, Fs) +// […] = mscohere (x, y, window, overlap, Nfft, Fs, range) +// mscohere (…) +// Description: +// See "help pwelch" for description of arguments, hints and references +// Dependencies : pwelch + // Check fixed argument if (nargin < 2 || nargin > 7) error("Invalid number of arguments"); -- cgit