qc_set_default_compiler qc_get_num_cpus navigation bar

Table of Contents

qc_get_languages

Returns a structure array of information about the languages available.

Syntax

languages = qc_get_languages % get languages available
    

Description

Returns a structure array of information about the languages available. Note that the values it returns may vary depending on the operating system or installed software. If no languages 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

languages

A structure array containing languages available. It is empty if no languages are available.

Examples

        languages = qc_get_languages; % Returns an array of languages available
    

 

navigation bar