主要内容

append

R2026b

Combine OPC data objects

    Description

    newObj = append(dObj1,dObj2,...,dObjn) combines OPC data objects in the time dimension without adding or removing data.

    example

    Examples

    collapse all

    Load the OPC UA example data file, combine data from the uaDataVis and uaDataSample objects.

    load opcSampleUaData;
    combData = append(uaDataVis,uaDataSample)
    combData = 
    
    1-by-6 OPC UA Data object:
    
          Name          Value           Start Timestamp       End Timestamp                Quality           
        --------  ------------------  -------------------  -------------------  -----------------------------
        Double    9 double values     2015-04-22 09:00:10  2015-04-22 09:01:30  3 unique qualities
        Float     12 single values    2015-04-22 09:00:02  2015-04-22 09:01:30  3 unique qualities
        Int32     12 int32 values     2015-04-22 09:00:02  2015-04-22 09:01:30  3 unique qualities
        Counter   1000 int32 values   2026-05-02 11:33:09  2026-05-02 11:49:48  1 unique quality [Good (Raw)]
        Square    1000 double values  2026-05-02 11:33:09  2026-05-02 11:49:48  1 unique quality [Good (Raw)]
        Sawtooth  1000 double values  2026-05-02 11:33:09  2026-05-02 11:49:48  1 unique quality [Good (Raw)]

    Input Arguments

    collapse all

    OPC UA data, specified as an OPC UA data object array. For more information, see Data.

    Output Arguments

    collapse all

    Combined OPC UA data returned as an array of OPC UA data objects.

    Version History

    Introduced in R2015b