2006-02-01から1ヶ月間の記事一覧

t=timer でタイマオブジェクト作成

tic - toc でストップウォッチタイマ

pause(n) でn秒待つ

Harvard Courses

http://www.registrar.fas.harvard.edu/fasro/courses/index.jsp?cat=ugrad&subcat=coursesIDがないと見れないものもあるが,一部は講義ノートも見られる.

MIT Open Courseware

下記リンクは"Somatosensory and Motor Systems, Spring 2002" http://ocw.mit.edu/OcwWeb/Brain-and-Cognitive-Sciences/9-373Somatosensory-and-Motor-SystemsSpring2002/CourseHome/ほかにもいろいろと参考になる情報あり.

Positive definite, stiffness matrix

恥ずかしいけど覚書.質問:なぜ,stiffness matrixは正定値行列なのか.答え:正定値行列でないと,任意の変位に対する歪エネルギーが負になる可能性があるから. 補足:Eigenvalueは正定値行列の定義から正.もしFEM解析中にwarningが出たら,それは構造に…

各Figureをフレームとして,ムービーを書き出す方法

今日の成果. %%%%% mov = avifile('test.avi'); mov.Quality = 75; %% 圧縮しないなら意味なし mov.compression = 'none'; %% コーデックを指定. h = figure(1); F = getframe(h); mov = addframe(mov,F);%%%%% ....mov = close(mov); %%%%%また,figureを…