www.gusucode.com > vnt工具箱matlab源码程序 > vnt/vnt/j1939ParameterGroup.m

    function parameterGroup = j1939ParameterGroup(varargin)
% j1939ParameterGroup Construct a J1939 parameter group.
%
%   PG = j1939ParameterGroup(DATABASE, NAME) constructs a PG using the NAME 
%   to reference the parameter group definition from the DATABASE.
%
%   Inputs:
%       DATABASE - A handle to a database file.
%       NAME - The name of the parameter group as a string.
%
%   Examples:
%       database = canDatabase('C:\Database.dbc')
%       pg = j1939ParameterGroup(database, 'PGName')
%
%   See also VNT.

% Authors: Jaremy Pyle
% Copyright 2015 The MathWorks, Inc.

    % Call the Message constructor.
    parameterGroup = j1939.ParameterGroup(varargin{:});
end