BXH Users,
I wrote a function which creates BXH headers for the DMDATA files generated by Jim Voyvodic's suite of tools (CIGAL, fscan, dmwrite, etc). The pdigm* files generated by CIGAL are in this format and contain much more information than the show*.out files. The function is called dmdata2bxh. Once the headers are written, the data can be read using readbxhdata. Here is an example of generating a BXH header and then reading the paradigm parameter file from the pdigm file.% Create a BXH header for your CIGAL output file
dmdata2bxh('pdigm5_12345_5_1');
% Read record type cigal_22 (paradigm parameter file in this case)
data=readbxhdata('pdigm5_12345_5_1.bxh','pdigm22');
% Read pdigm5_12345_5_1 chosing the record in a GUI.
data2=readbxhdata('pdigm5_12345_5_1.bxh');The necessary software is in \\Gall\Programs\User_Scripts\alpha\
Enjoy,
Chuck