2010-11-01から1ヶ月間の記事一覧

メモ

Bulk modulus

phononメモ

A.A. Maradudin, A.E. Fein, and G.H. Vineyard, Phys. Scr. 2 1479 (1962) Theory of LatticeDynamics in the Harmonic Approximation Vibrational Thermodynamics of Materials A.A. Maradudin and A.E. Fein, Phys. Rev. 128, 2589 (1962) http://www.its…

メモ:pointer to arrayのcast

#include <stdio.h> #include <stdlib.h> int main() { int * p; printf("%p\n", p); p = malloc( sizeof(int) * 9 ); printf("%p\n", p); printf("int[3] %lu\n", sizeof(int[3])); printf("int %lu\n", sizeof(int)); int i, j; for ( i = 0; i < 9; i++ ) { p[i] = i; } for </stdlib.h></stdio.h>…

日記

Ubuntu10.10に移行。大きな変更は無いようだ。aptitudeがデフォルトでインストールされなくなった。 ibus-mozcのキーバインド kotoeriに変える方法は少しトリッキー。 /usr/lib/mozc/mozc_tool --mode=config_dialogで設定パネルを出すことができる。 evince…

日記

madnessという面白いコードがある。http://code.google.com/p/m-a-d-n-e-s-s/ madnessのinstall autoreconfをすればmakeできる。autotoolsは使い方がいまいちわからない。適当にaclocal, autoheader, automake, autoconfとかするとうまくいかない。要勉強。