MAKE Create a structure containing named variables as fields. MAKE NAME V1 V2 ... VN where the VI are names of variables, creates a structure NAME with fields NAME.V1, NAME.V2, ... NAME.VN The original variables are not deleted. If structure NAME has any existing fields, the new fields are appended after the existing fields. MAKE(CELL), where CELL is a cell array of strings such that CELL{1}=NAME, CELL{2}=V1, ... CELL{N}=VN, also works. This is useful for handling multiple datasets with the same variable names. The structures can be then kept in memory and 'mapped' into variables as needed using USE. See also USE, MATSAVE. _________________________________________________________________ This is part of JLAB --- type 'help jlab' for more information (C) 2000--2016 J.M. Lilly --- type 'help jlab_license' for details