vlt.data.structfullfields¶
STRUCTFULLFIELDS - return full field names for structures and substructures
FN = vlt.data.structfullfields(S)
Returns the field names of a structure S, including substructures.
For example, if a structure A has fields AA and AB, and AA is a structure
with fields AAA and AAB, then FN is {'A.AA.AAA','A.AA.AAB','A.AB'}.
Example:
A = struct('AA',struct('AAA',5,'AAB',7),'AB',2);
fn = vlt.data.structfullfields(A);