reference
API Reference › Intan 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)Related APIs
labkit.contract.versionInfo— Describe one LabKit API version and its compatibility range.labkit.contract.checkRequirements— Compare required API ranges with available LabKit versions.labkit.rhs.findFiles— Find Intan RHS files in a folder and its subfolders.labkit.rhs.indexFile— Build a block index for reading selected RHS time windows.labkit.rhs.inspectFile— Read metadata and data-layout information from an RHS file.labkit.rhs.readWindow— Read selected channels and times from an Intan RHS file.
Source
This page is generated from the MATLAB help text in +labkit/+rhs/version.m.