Accelerator Independent Data Access / PVAccess 2.0
AIDA-PVA is the latest version of the AIDA framework. Built on top of EPICS 7 it enables client applications to programmatically access and manage any device or database on the SLAC Network using simple channel names.
Loading...
Searching...
No Matches
pvaGetM.m
1function out = pvaGet(channel, varargin)
2 if ( length(varargin) > 0 )
3 out = ML(edu.stanford.slac.aida.client.AidaPvaClientUtils.pvaGet(channel, varargin{1}));
4 else
5 out = ML(edu.stanford.slac.aida.client.AidaPvaClientUtils.pvaGet(channel));
6 end
7end