LabKit MATLAB Workbench

reference

API ReferenceIntan RHS Recordings

labkit.rhs.version

Return version information for the RHS API.

Syntax

info = labkit.rhs.version()

Description

Reports the API version and compatibility range used when an app declares a dependency on labkit.rhs. This is not the file-format version stored in an Intan recording.

Outputs

info
Scalar structure returned by labkit.contract.versionInfo. name is "labkit.rhs"; facade is "rhs"; current is the current semantic version; compatible lists supported requirement ranges; status describes API maturity; and notes summarizes the module.

Failure Behavior

The function accepts no caller input. Invalid embedded facade metadata raises labkit:contract:InvalidVersionInfo; released metadata is validated by the contract test suite.

Example

info = labkit.rhs.version();
fprintf("RHS API %s (%s)\n", info.current, info.status)

Source

This page is generated from the MATLAB help text in +labkit/+rhs/version.m.