Extract data from an ensemble member given a path
readMemberData
is a function used in code generated by Diagnostic Feature
Designer.
reads the value under the path data
= readMemberData(memberdata
,path
)path
from member data
memberdata
.
Code that is generated by Diagnostic Feature
Designer uses readMemberData
when performing member-level
processing.
reads the values of the variable names in data
= readMemberData(memberdata
,path
,variablenames
)variablenames
. For example,
Vibration = readMemberData(member,"Vibration",["Time","Data"])
reads
the Vibration
variables Time
and
Data
from the current member row.
reads the values contained within a frame interval that is specified by the frame start and
stop times. Use this syntax when data
= readMemberData(___,'FrameInterval',interval
)path
starts with
FRM
, which indicates that the data to be read is segmented into frames.
You can use this syntax with any of the input argument combinations in previous
syntaxes.