-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathspectrumscope_documentation.m
71 lines (62 loc) · 3 KB
/
spectrumscope_documentation.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
%% SPECTRUMSCOPE Compute and display a real-time FFT
% SPECTRUMSCOPE makes it fairly easy to include a spectrum scope in your
% real-time data acquisition and analysis application. You feed
% spectrumscope your data, and it plots the FFT - simple enough! It takes
% 2 steps to use SPECTRUMSCOPE. First, you initialize the scope with basic
% information needed for the FFT (sample rate, fft length, and number of traces).
% After that, all you need to do is pass your data to the scope.
%
% This documentation starts with the simplest syntax for the two steps,
% then provides a few more advanced options.
%% Step 1: Initialize the scope
% SPECTRUMSCOPE(FS,NFFT) initializes a spectrum scope in the current axes.
% This spectrum scope will compute and displays the NFFT-point FFT of a vector
% signal with sample rate FS Hz.
%% Step 2: Update the scope
% SPECTRUMSCOPE(S) updates the spectrum scope in the current axes with the
% FFT of vector S. The scope should first be initialized as above with
% sample rate and FFT length. If not, the sample rate will be 1 Hz and the FFT
% length will be the length of S. Differences between the length of S and
% the specified FFT length are handled the same as MATLAB's built-in FFT
% function (i.e., zero-padding or truncation, as appropriate).
%% Including multiple traces
% SPECTRUMSCOPE(FS,NFFT,NTRACES) initializes a spectrum scope in the
% current axes with NTRACES traces. A trace is a single line on the scope;
% typically one will display one trace per channel of data. The default
% for NTRACES is 1. To update a spectrum scope with multiple traces,
% SPECTRUMSCOPE(S) must specify a matrix S with shorter dimension length =
% NTRACES. SPECTRUMSCOPE computes the FFT along the longer dimension,
% assuming the shorter dimension corresponds to traces. I know that this
% differs from FFT (which always defaults to applying to each column), but
% I find this deviation convenient.
%% Specifying the axes to locate the scope
% SPECTRUMSCOPE(HAX, ...) defines the scope in specified axes HAX instead of GCA. i.e.,
% SPECTRUMSCOPE(HAX,FS,NFFT) initializes axes HAX as a spectrum scope, and
% SPECTRUMSCOPE(HAX,S) updates axes HAX with vector S.
%% Returning a handle to the scope
% HAX = SPECTRUMSCOPE(...) returns a handle to the axes initialized by the
% spectrum scope. This is useful if you allow SPECTRUMSCOPE to create an
% axes for you, and want to be able to easily reference the axes for
% updates. The lines created by SPECTRUMSCOPE all have the tag
% 'SpectrumScope'. If you would like to manually modify the properties of
% these lines, their handles can be found by:
%
% HAX = SPECTRUMSCOPE(...);
% HLINE = findobj(HAX,'Tag','SpectrumScope');
%% Example
% Create data
Fs = 1024;
Nfft = 2048;
t = (0:1:Nfft-1)'/Fs;
fo = 100:5:300; % Range of fundamental frequencies
s1 = sin(2*pi*t*fo);
%%
% Initialize scope
spectrumscope(Fs,Nfft);
%%
% Update scope
for ii = 1:length(fo)
spectrumscope(s1(:,ii));
drawnow;pause(.01);
end;
% Copyright 2004 The MathWorks, Inc