process streaming signals and large data with system objects
most real-time signal processing applications use stream processing, a memory-efficient technique for handling large amounts of data. stream processing divides incoming data into frames and fully processes each frame before the next one arrives. examples of applications that use stream processing include audio enhancement, wireless baseband processing, object tracking, and radar beamforming.
the just-in-time and memory-sensitive nature of stream processing presents special challenges. streaming algorithms must be efficient and keep up with the rate of data updates. to handle large data sets, the algorithms must also manage memory and state information, store previous data buffers only as needed, and update each buffer and state frame-by-frame.
algorithm components called system objects simplify stream processing in matlab®. system objects provide a workflow for developing streaming algorithms and test benches for a range of streaming applications, which involve just a few lines of matlab code.
for developing efficient, readable stream processing programs in matlab, system objects:
- process frames and then overwrite past frames with incoming data
- initialize parameters only once as they are created
- manage buffer updates, state updates, and indexing automatically, which speeds algorithm development
- support matlab code generation and parallel computing workflows
examples and how to
general
audio toolbox
communication system toolbox
computer vision toolbox
dsp system toolbox
phased array system toolbox
software reference
see also: matlab gpu computing, radar system design, wireless communications, logic analyzer, parametric equalizer, spectrum analyzer software, audio signal processing, oscilloscope software