function [d,buf]=separate_dfields(d) separates the uncuttable fields in our data structure. this function is used in binscans, framecut, frameadd, and framesort sjcm
0001 function [d,buf]=separate_dfields(d) 0002 0003 % function [d,buf]=separate_dfields(d) 0004 % 0005 % separates the uncuttable fields in our data structure. 0006 % 0007 % this function is used in binscans, framecut, frameadd, and framesort 0008 % 0009 % sjcm 0010 0011 [d,buf]=buffields(d,{ {'correction'},... 0012 {'rev'}, {'pipe'}, {'par'}}); 0013 0014 return;