Main Content

addInfoHeader

Add custom information about i-vector system

Since R2021b

    Description

    example

    addInfoHeader(ivs,str) adds a field called Header to the structure output by info(ivs) and populates it with str.

    addInfoHeader(ivs) clears the custom information from the i-vector system ivs.

    Examples

    collapse all

    Create a default i-vector system.

    ivs = ivectorSystem;

    Add custom header information to the object. Use the info function to display the information.

    addInfoHeader(ivs,'Custom Header Information')
    
    info(ivs)
    Header
      Custom Header Information
    

    Input Arguments

    collapse all

    i-vector system, specified as an object of type ivectorSystem.

    Custom information about i-vector system, specified as a character vector or string scalar.

    Data Types: char | string

    Version History

    Introduced in R2021b