Created
February 7, 2009 02:02
-
-
Save vincentchu/59729 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function writePDB(pdbFile, coords, origin, delta); | |
n = size(coords, 1); | |
inds = [1:n]'; | |
coords = coords .* repmat(delta, n, 1) + repmat(origin, n, 1); | |
foo = [inds coords]; | |
fid = fopen(pdbFile, 'w'); | |
fprintf(fid, 'ATOM %6d ION XXXX 1 %7.3f %7.3f %7.3f\n', foo'); | |
fclose(fid); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment