reference
labkit.biosignal.version
Return the LabKit biosignal facade contract version.
Syntax
info = labkit.biosignal.version()Description
Reports the semantic version and compatibility range of the public labkit.biosignal API. Use this information when an app or saved project needs to check whether the installed biosignal facade satisfies a known contract range.
Inputs
None.
Outputs
info- Scalar structure returned by
labkit.contract.versionInfo. It identifies the biosignal component, current version, compatible contract range, stability status, and a short description.
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.biosignal.version();
currentVersion = info.current;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.biosignal.buildTemplate— Build a representative segment template.labkit.biosignal.compareGroups— Summarize groups and compute pairwise Welch comparisons.labkit.biosignal.cropSignal— Return a signal clipped to a time range in seconds.labkit.biosignal.defaultEcgPeakOptions— Return documented defaults for ECG/QRS peak detection.labkit.biosignal.detectEcgPeaks— Detect ECG/QRS peaks as event anchors.labkit.biosignal.filterSignal— Apply a zero-phase FFT-domain filter to a biosignal.
Source
This page is generated from the MATLAB help text in +labkit/+biosignal/version.m.