LabKit MATLAB Workbench

reference

API ReferenceGamry 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)

Source

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