Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. fileID=fopen('first3.txt','w');
  2. fid=fopen('a.txt');
  3. tline=fgets(fid);
  4. tline=fgets(fid);
  5. tline=fgets(fid);
  6. tline=fgets(fid);
  7. grp = textscan(tline,'%d %d %d %d %d %d %d %d %d %d %s');
  8.  
  9. tline=fgets(fid);
  10. n1=textscan(tline,'%.4f %.4f %.4f %c %d %d %d %d %d %d %d %d %d %d %d %d');
  11. fprintf(fileID,' %f %f 0.0000 %c 0 0 0 0 0 0 0 0 0 0 0 0n',double(n1{1}),...
  12. double(n1{2}),char(n1{4}),double(n1{5}),double(n1{6}),double(n1{7}),...
  13. double(n1{8}),double(n1{9}),double(n1{10}),double(n1{11}),double(n1{12}),...
  14. double(n1{13}),double(n1{13}),double(n1{15}),double(n1{16}));
  15.  
  16. fclose(fileID);
  17. fclose(fid);
  18.  
  19. aaa
  20. bbb
  21. ccc
  22. 4 3 0 0 0 0 0 0 0 0 ABC
  23. 0.0000 -0.1976 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
  24.  
  25. 0.000000 -0.197600 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
  26. 0.000000 0.000000 0.0000 NUL 0 0 0 0 0 0 0 0 0 0 0 0
  27. 0.000000 0.000000 0.0000 NUL 0 0 0 0 0 0 0 0 0 0 0 0
  28. 0.000000 0.000000 0.0000 NUL 0 0 0 0 0 0 0 0 0 0 0 0
  29. 0.000000 0.000000 0.0000 NUL 0 0 0 0 0 0 0 0 0 0 0 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement