reference
API Reference › Gamry DTA Files
labkit.dta.version
Return version information for the DTA API.
Syntax
info = labkit.dta.version()Description
Reports the API version and compatibility range used when an app declares a dependency on labkit.dta. This is not the Gamry software version or a version identifier read from a DTA file.
Outputs
info- Scalar structure returned by
labkit.contract.versionInfo. name is "labkit.dta"; facade is "dta"; 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.dta.version();
fprintf("DTA 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.dta.detectPulses— Locate cathodic and anodic pulse windows in chrono data.labkit.dta.detectType— Identify the supported Gamry DTA data family in a file.labkit.dta.findFiles— Find DTA files in a folder and its subfolders.labkit.dta.getColumn— Extract a named column from a parsed DTA table.labkit.dta.getCurveXY— Extract paired X and Y data from a parsed CV/CT curve.labkit.dta.getMainCurve— Select the transient table containing T, Vf, and Im data.
Source
This page is generated from the MATLAB help text in +labkit/+dta/version.m.