MATLAB练习例子十六(The bucky Ball)

返回

》 [B,v] = bucky; 》 gplot(B,v) 》 axis equal
》 [B,v] = bucky; 》 k = 1:30; 》 gplot(B(k,k), v); 》 axis square 》 for j = 1:30, text(v(j,1),v(j,2), int2str(j)); end
》 spy(B) 》 subplot(2,2,1), spy(B^2); 》 subplot(2,2,2), spy(B^3); 》 subplot(2,2,3), spy(B^4); 》 subplot(2,2,4), spy(B^8); 》 B = bucky; 》 r = symrcm(B); 》 m = symamd(B); ??? 'symamd' は未定義の関数、または変数です. 》 spy(B) 》 spy(B(r,r))
返回