Class handling .cif formatted files

버전 1.3.0.0 (8.84 KB) 작성자: Sandor Toth
The @cif class enables easy access to the crystallographic data stored in .cif files.
다운로드 수: 954
업데이트 날짜: 2016/6/15

라이선스 보기

Matlab class handling .cif data. It simply reads a .cif file into a Matlab class making accessible all fields stored in the .cif fil. Access to any field of the .cif file is possible simply using the Matlab .(dot) notation.
Example:
MyCifFile = cif('file.cif');
lattice_par = [MyCifFile.cell_length_a MyCifFile.cell_length_b MyCifFile.cell_length_c];
The above example extracts the lattice parameters from a .cif file.

For the .cif file format specification see:
http://www.iucr.org/resources/cif

인용 양식

Sandor Toth (2024). Class handling .cif formatted files (https://www.mathworks.com/matlabcentral/fileexchange/43266-class-handling-cif-formatted-files), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2014b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Condensed Matter & Materials Physics에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

cif/cif/@cif/

버전 게시됨 릴리스 정보
1.3.0.0

Added fieldnames() function and able to load .cif file from the given URL.

1.2.0.0

Small bug fixes.

1.0.0.0