2009-09-01から1ヶ月間の記事一覧

Day6

Fin

9:00-20:00 SunnyEmail from Professor Kaski including new missions. Read "Dynamics of market correlations: Taxonomy and portfolio analysis" to find tips to analysis. Launch API to database, "Buzz research". Preparation for Japanese text ana…

Day6

Fin

 シングルクォートの出力

awk

\047 と \x27が対応する。 echo a | awk '{print "\047" $1 "\x27" }'→'a' 引用元 awkでawkコマンドを書く、みたいなトリッキーな状況下で使える。 例) フォルダ以下のCSVファイルに対して、awkで処理するコマンドを書くawkスクリプト。 さらに、sortとuniq…

TSUBAMEのキューの削除方法

投入したジョブを取り消したいのですが? 課金ノード以外(free)で実行している場合。 qstat -u XXXX (削除したいjob-IDを確認 [=YYYYとする]) qdelete -c free YYYY 課金ノードの場合はfreeの部分がsla1とかになる。 詳しくはqstatで確認。

Day5

Fin

8:40 -18:30 Sunny/CloudyMake prior arrangement to Japanese text analysis with RMecab. Discussion with Dr. Raj Kumar Pan about analysis. Find a book "The Social Atom" written by Mark Buchanan in 2007. ("social physics"!) Think of human bein…

Day5 [Othrer][awk]

Fin

Day4

Fin

8:30 - 18:30 Cloudy/Sunny/RainySeminar by Dr.Karsai, title is "Cooperative behavior in complex systems ". Discussion with Professor Kaski about my paper and future work about network. Set up new computer to use API of Perl, especially modu…

Day4

Fin

Day3

Fin

11:00 - 17:00 CloudySend a list to Hottolink to ask another data. Restart to submit jobs on TSUBAME to complete my simulation. Almost none in laboratory on Sunday, I found just 2 people in the building. A security guard knocked my door to …

Day3

Fin

Day2

Fin

Off (Sightseeing)Meet tyrannosaurus at National history museum. Wine can only buy at "Alko" in Finland. Find many Chinese tourists and they are so vigorous. Go to Temppeliaukio Church and think that how sunlight effect to North European.

Day2

Fin

Day1

Fin

10:00 - 19:20 Find a way to the laboratory by bus with useful web site, ytv. They show nearest address to destination including walking time, no need to look for nearest station. Get a room(key), a machine(ubuntu), an ID card, and an elect…

Day1

Fin

Day0

Fin

A safe and smooth flight from Narita with a stopover in Copenhagen to Helsinki. A speedy taxi from airport to accommodation was 34 Euro, more than 100 km/hour. A Comfortable accommodation with kitchen including oven, beater, and so on.

Day0

Fin

ファイルに実行権限を与える。 chmod a+w [InpufFilename]

TSUBAMEの使い方(外部接続)

TSUBAME Cygwin起動 ssh xxxx@media-o.cc.titech.ac.jp ssh xxxx@login.cc.titech.ac.jp scp SIMULATION.c media-o.titech.ac.jp プログラムのコンパイル(通常) 結果をTMP.csvに出力する場合。 gcc -DMEXP=607 -o SIMULATION.exe ./SFMT/SFMT.c SIMULATION.c…

 変数を表示

wave1のカラム数を数えて、表示 wavestats /Q wave1 print V_npnts /Qで結果を表示しない、というオプション。 print wave1[10]で、wave1の10カラム目を表示、という意味。

Tips

コロモゴロフ-スミルノフ検定 Kolmogorov–Smirnov testIgorの中に組み込まれているKStest関数を使う。 例えば、wave1に実データ、wave2には実データが従う累積分布関数の理想値を入れて、 statsKStest wave1,wave2 とすれば、結果が、 alpha = 0.05 N1 = 183…

Helsinki

From 24th September 2009, going to Helsinki.フィンランドに関する映画とか本。ナイト・オン・ザ・プラネット [DVD]出版社/メーカー: パラマウント ホーム エンタテインメント ジャパン発売日: 2009/09/25メディア: DVD購入: 9人 クリック: 47回この商品を…

処理を強制終了

awk

逐次処理を強制的に終了したい場合は、Cと同じでexitが使える。 例)[InputFile]の10行目から20行目だけを見たい場合 gawk '{if(NR>20)exit;if(NR>9)print $0;}' [InputFile]

Stats関数 Igorで扱える統計検定 グラフの桁数表示方法の変更 Computed Manual Ticksにして、Major tick marksを変更する。下二桁まで小数点表示したい場合は、Tick incrementを0.01、Digits after dpを2とすればよい。 例)をというような表記にする。 Modi…

Tips

win

OfficeドキュメントのPDF保存 Office2007の場合は、以下のアドインをインストールしておくと、 パワポもワードも簡単にPDF保存ができて便利。 2007 Microsoft Office プログラム用 Microsoft PDF/XPS 保存アドイン administratorでログイン administratorに…

Tips

Wolfram|Alpha

http://www.wolframalpha.com/いろいろ便利な検索(wikipediaのような感じ)、計算ができる。 微分方程式の計算の確認用にも使える。 例えば、の微分方程式を解いて、 確認したい場合にも、検索窓に以下をインプットすればOK。 x'(t)=A*(x(t))^2 ちなみに…