Main Content
audioPlugin Class
Base class for audio plugins
Description
audioPlugin
is the base class for audio plugins. In your
class definition file, you must subclass your object from this base class or from the audioPluginSource
class, which inherits from audioPlugin
. Subclassing enables you to inherit the attributes
necessary to generate plugins and access Audio Toolbox™ functionality.
To inherit from the audioPlugin
base class directly,
type this syntax as the first line of your class definition
file:
classdef myAudioPlugin < audioPlugin
myAudioPlugin
is the name of your object.For a tutorial on designing audio plugins, see Audio Plugins in MATLAB.
The audioPlugin
class is a handle
class.
Methods
Examples
Extended Capabilities
Version History
Introduced in R2016a