7. 부록(1)[The elasticity of alpha-helix, pi-helix]
dcd function function h = read_dcdheader(filename) % new_handle = read_dcdheader(filename) fid = fopen(filename, 'r', 'b'); i = fread(fid, 1, 'int32'); if i ~= 84 % wrong endianism; try again fclose(fid); fid = fopen(filename, 'r', 'l'); i = fread(fid, 1, 'int32'); if i ~= 84 fclose(fid); end end h.fid = fid; % % Figure out how big the file is % fseek(fid,0,1); h.endoffile = ftell(fid); fseek(fi..
2021. 11. 3.
6. Reference[The elasticity of alpha-helix, pi-helix]
Reference [1] Seungho Choe and Sean X.Sun, “The elasticity of alpha-helices”, The Journal of Chemical Physics(2005) [2] VMD User’s Guide, NIH Biomedical Research Center for Macromolecular Modeling and Bioinformatics, December 23, 2014 [3] NAMD User’s Guide, Theoretical Biophysics Group, Setember 8, 2016 [4] 여영구, “쉽게배우는 MATLAB 입문과 활용 3판”, 아진, 2014 [5]http://bio.libretexts.org/Core/Biochemistry_On..
2021. 11. 3.