Mackay-Icosahedron

버전 1.1.0.0 (2.12 KB) 작성자: Dmitry
Function for generating of Mackay-Icosahedron
다운로드 수: 531
업데이트 날짜: 2010/5/19

라이선스 보기

This function generates so called Mackay-Icosahedron. In this function it's possible to change distance between atoms (bonding length) number of shells and also composition of two different kinds of atoms

Use following piece of code to visualise the particle:
radius = 1; details = 15;
for i=1:size(X,1)
[X_mesh,Y_mesh,Z_mesh] = ellipsoid(X(i),Y(i),Z(i),radius,radius,radius,details);
s(i) = surface(X_mesh,Y_mesh,Z_mesh);
set(s(i),'EdgeColor','none','Tag',strcat('atom_',int2str(i)));
if(type(i)==1)
set(s(i),'FaceColor','red');
else
set(s(i),'FaceColor','blue');
end
end

axis equal
axis off
light
lighting gouraud

인용 양식

Dmitry (2024). Mackay-Icosahedron (https://www.mathworks.com/matlabcentral/fileexchange/27535-mackay-icosahedron), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2009b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
태그 태그 추가

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.0

I include some nice code for visualisation (see description)

1.0.0.0