qc_get_version qc_is_big_endian navigation bar

Table of Contents

qc_get_voices

Returns a structure array of information about the voices available for speech synthesis.

Syntax

[voices, err] = qc_get_voices % get voices available
    

Description

Returns a structure array of information about the voices available for speech synthesis. Note that the values it returns may vary depending on the operating system or installed software. If no voices are available then an empty structure array is returned.

If an error occurs then a negative error code is returned in the err output. If no err output is specified then it throws a MATLAB exception instead.

Parameters

This function has no parameters.

Outputs

voices

A structure array containing voices available for speech synthesis. It is empty if no voices are available.

err

Zero if the operation is successful. A negative error code otherwise.

Examples

        voices = qc_get_voices; % Returns an array of voices available for speech synthesis
    

 

navigation bar