Hi
My input file is as below.
AXY,21,23,12,334,34
VBE,32,34,32,43,34
AXX,32,34,45,32,45
AXY,23,43,323,122
VBE,23,3,323,21,121
Now here the first token designate the nodal name. Now what i want is to create a set of file
name AXY_info.txt,VBE_info.txt,AXX_info.txt and here file name designating the nodal name and each file should contain their respective values. So for that i need to create an array of files depending on the number of distinct nodal points. Also i m facing problem while calling the close() for these files as i m not able to know how many files are being created in advance. How should i do this.
Kindly help