2015-12-21から1日間の記事一覧

MATLABでデローニー(ドロネー)分割

http://jp.mathworks.com/help/matlab/math/delaunay-triangulation.html

MATLABでPlot上のTextを最前面に出す

uistack()はなぜか使えなかった。 set(hText, 'Layer', 'front'); を使う。 clear all; close all; [X,Y]=meshgrid(1:11); figure; hold on; plot(X,Y,'k'); plot(Y,X,'k'); axis off; I=rand(11); surface(I); h=linspace(0.5,1,64); h=[h',h',h']; set(gcf…

Fortran入門

http://www.research.kobe-u.ac.jp/csi-viz/members/kageyama/lectures/H22_FY2010_former/ComputationalScience/2_1_f95a.html

MATLABでgridmapを描く

http://www.mathworks.com/matlabcentral/answers/154877-how-to-plot-a-10-10-grid-map-and-how-to-number-the-grid-cells-sample-pic-is-attached-here [X,Y]=meshgrid(1:11); figure; hold on; plot(X,Y,'k'); plot(Y,X,'k'); axis off; I=(rand(11)); su…

Makefileのマクロ

http://yut.hatenablog.com/entry/20120702/1341185909 変数 説明 $@ ターゲットファイル名 $ $? ターゲットより新しい全ての依存ファイル名 $^ 全ての依存ファイル名 $+ Makefileと同じ順番の依存ファイル名 $* suffixを除いたターゲット名 $% アーカイブだ…