audioplayer_fieldnames
Returns the properties name of an audioplayer object.
📝 Syntax
l = audioplayer_fieldnames(h)
l = fieldnames(h)
📥 Input argument
h - a audioplayer object.
📤 Output argument
l - a cell of strings.
📄 Description
fieldnames returns a cell of strings with properties name.
💡 Example
signal = rand(2, 44100) - 0.5;
playObj = audioplayer(signal, 44100, 16)
fieldnames(playObj)
delete(playObj)
clear playObj🔗 See also
🕔 History
Version
📄 Description
1.0.0
initial version
Last updated
Was this helpful?