2 I I / 61

Size: px
Start display at page:

Download "2 I I / 61"

Transcription

1 2 I I / 61

2 I / 61

3 I / 61

4 7/13 2 7/20 I 7/27 II I / 61

5 π-computer gnuplot MobaXterm Wiki PC X11 DISPLAY I / 61

6 Mac 1. X11 XQuartz.app 2. ssh -Y my 3. π-computer gnuplot I / 61

7 gnuplot> gnuplot> plot sin(x) I / 61

8 cp -r /tmp/170713/ your_directory ls -l 4 data, sierpinski, src01d, src02d cd your_directory/src01d I / 61

9 1D data1d generator.f95 module I / 61

10 const m module const m i m p l i c i t none! < f o r t r a n c o n s t a n t s > i n t e g e r, parameter : : SP = s e l e c t e d r e a l k i n d ( 6 ) i n t e g e r, parameter : : DP = s e l e c t e d r e a l k i n d ( 1 5 )! <s i m u l a t i o n c o n s t a n t s > i n t e g e r, parameter : : NN = 101 end module const m I / 61

11 f95 data1d_generator.f95 &&./a.out > data.1d make data.1d make I / 61

12 data.1d I / 61

13 gnuplot # 1 x, y 1 plot x 2 y I / 61

14 gnuplot gnuplot> plot data.1d w lp PDF w lp with linespoints linepoint w linespoints I / 61

15 I / 61

16 gnuplot gnuplot gnuplot script src01d graph1d.gp # # A simple sample gnuplot script: graph1d.gp # # # set size square # same side lengths for x and y # set size 0.65, 1 # other way to set regular rectan set xlabel x # x-axis set ylabel func # y-axis set xrange[-10:10] # x coords range set yrange[-1:1] # y coords range set title graph 1d plot data.1d w lp pause -1 I / 61

17 gnuplot quit shell gnuplot graph1d.gp make graph I / 61

18 Makefile make target source target: source [ ] command_to_make_target_from_source target source source target I / 61

19 Makefile make target: source01 [ ] command_to_make_target_from_source01 source01: source02 [ ] command_to_make_source01_from_source02 source02: source03 [ ]... I / 61

20 I / 61

21 recsin(x, n) = sin(sin(sin( (sin(x))) ) anim data generator.f95 I / 61

22 anim data generator.f95 make anim.data 50 I / 61

23 gnuplot gnuplot pause t t pause t t I / 61

24 set xlabel x set ylabel func set xrange[-10:10] set yrange[-1:1] set title anim 1d plot data.1d.000 w lp pause 5 plot data.1d.001 w lp pause 0.5 plot data.1d.002 w lp pause 0.5 plot data.1d.003 w lp.. pause -1 # x-axis # y-axis # x coords range # y coords range # Enter I / 61

25 100 plot 100 : anim plotscript generator.f95 make anim.gp anim.gp I / 61

26 make anim I / 61

27 I / 61

28 2 1 gnuplot 2 plot splot gnuplot > splot [ f(x,y)] gnuplot > splot x**2 + y**2 I / 61

29 splot f(x,y) I / 61

30 splot gnuplot splot exp(-x**2-y**2) set isosamples 50 # replot set xrange[-2:2] # x replot set yrange[-2:2] # y replot I / 61

31 show view # set view 60,0 # x 60 replot set view 60,30 # x 60 z 30 I / 61

32 I / 61

33 set hidden3d replot # I / 61

34 set contour base # replot set cntrparam levels 30 # replot I / 61

35 unset surface replot # I / 61

36 set pm3d at b replot # draw with colored contour I / 61

37 2D I / 61

38 2D x00 y00 x01 y00 x02 y00 x09 y00 x00 y01 x01 y01 x09 y01 x09 y09 I / 61

39 cd [your directory]/src02d I / 61

40 heat4.f95 I / 61

41 2D x,y s u b r o u t i n e p r i n t p r o f i l e 2 d ( p, j j, f ) t y p e ( r a n k s t ), i n t e n t ( i n ) : : p t y p e ( s p a n t ), i n t e n t ( i n ) : : j j r e a l (DP), d i m e n s i o n ( 0 : NGRID+1, & r e a l (DP), j j%s t t 1: j j%end+1), i n t e n t ( i n ) : : f d i m e n s i o n ( 0 : NGRID+1,0:NGRID+1) & : : f g l o b a l! 2d p r o f to be saved i n t e g e r : : c o u n t e r = 0! has s a v e a t t r i b. t y p e ( s p a n t ) : : j j 2! used f o r f g l o b a l c h a r a c t e r ( l e n =4) : : s e r i a l n u m! put on f i l e name c h a r a c t e r ( l e n = ), parameter : : base =.. / data /temp. 2 d. i n t e g e r : : i, j I / 61

42 2D j j 2 = a d j u s t j s t a r t a n d j e n d ( p, j j ) w r i t e ( s e r i a l n u m, ( i 4. 4 ) ) c o u n t e r f g l o b a l ( :, : ) = s e t p r o f 2 d ( j j, j j 2, f ) i f ( p%myrank==0 ) then open ( 1 0, f i l e =base // s e r i a l n u m ) do j = 0, NGRID+1 do i = 0, NGRID+1 w r i t e ( 1 0, ) i, j, f g l o b a l ( i, j ) end do w r i t e ( 1 0, )! g n u p l o t r e q u i r e s a b l a n k l i n e h e r e. end do c l o s e ( 1 0 ) end i f c o u n t e r = c o u n t e r + 1 end s u b r o u t i n e p r i n t p r o f i l e 2 d I / 61

43 1. mpifrtpx heat4.f95 2. pjsub heat4.sh../data temp.2d.0000 make data OK I / 61

44 E E E E-002 I / 61../data temp.2d E E E E E

45 heat4 lines.gp 2 gnuplot # # A sample gnuplot script: heat4_lines.gp # # [ line contours ] # # set size square # same side lengths for x and y set size 0.65, 1 # same side lengths for x and y set xlabel "i" # x-axis set ylabel "j" # y-axis set xrange[0:50] # i-grid min & max set yrange[0:50] # j-grid min & max set nosurface # do not show surface plot unset ztics # do not show z-tics set contour base # enables contour lines set cntrparam levels 10 # draw 10 contours set view 0,0 # view from the due north set title "Temperature" I / 61

46 gnuplot UNIX gnuplot heat4 lines.gp I / 61

47 I / 61

48 gnuplot heat4 colors.gp I / 61

49 heat4 colors.gp # # A sample gnuplot script: heat4_plot_contour_colors.gp # # [ color contours ] # # set size square # same side lengths for x and y set size 0.65, 1 # same side lengths for x and y set xlabel "i" # x-axis set ylabel "j" # y-axis set xrange[0:50] # i-grid min & max set yrange[0:50] # j-grid min & max set palette defined (0 "blue", 0.15 "red", 0.3 "yellow") set nosurface # do not show surface plot unset ztics # do not show z-tics set pm3d at b # draw with colored contour set view 0,0 # view from the due north set title "Temperature " splot "../data/temp.2d.0000" using 1:2:3 pause -1 I / 61

50 I / 61

51 bird s eye view I / 61

52 gnuplot plot4_plot_birdseyeview.gp # # a sample gnuplot script: plot4_plot_birdseyeview.gp # # [ Bird"s Eye View ] # # set size square # same side lengths for x and y set size 0.65, 1 set xlabel "i" # x-axis set ylabel "j" # y-axis set xrange[0:50] # i-grid min & max set yrange[0:50] # j-grid min & max set contour base # enables contour lines set cntrparam levels 10 # draw 10 contours # set palette defined (0 "blue", 0.15 "red", 0.3 "yellow") # set pm3d # draw with colored contour set title "Temperature " splot "../data/temp.2d.0000" using 1:2:3 w l pause -1 I / 61

53 I / 61

54 splot view heat4 plot rotating birdseyeview generator.f95 gfortran heat4 plot rotating birdseyeview generator.f95./a.out > anim.gp anim.gp gnuplot anim.gp 5 make anim OK make clean make data../data make anim I / 61

55 I / 61

56 cd [your directory]/sierpinski OpenMP 2 sierp.f95 I / 61

57 sierp.f95 sierp2.f95 omp section 3 module private public I / 61

58 sierp2.f95 enshu.sh frtpx -Kopenmp sierp2.f95 pjsub enshu.sh make data Makefile : data data.099 data.??? make graph I / 61

59 I / 61

60 sierp2.f95 1/3 (x n+1, y n+1 ) = (x n /2 + 1, y n /2) 1/3 (x n+1, y n+1 ) = (x n /2 1, y n /2) 1/3 (x n+1, y n+1 ) = (x n /2, y n + 1) 1/10 (x n+1, y n+1 ) = (x n /2 + 1, y n /2) 1/10 (x n+1, y n+1 ) = (x n /2 1, y n /2) 8/10 (x n+1, y n+1 ) = (x n /2, y n + 1) sierp3.f95 gnuplot I / 61

61 π-computer diff sierp2.f95 sierp3.f95 mail kage 7/19 23:59 I / 61

2 A I / 58

2 A I / 58 2 A 2018.07.12 I 2 2018.07.12 1 / 58 I 2 2018.07.12 2 / 58 π-computer gnuplot 5/31 1 π-computer -X ssh π-computer gnuplot I 2 2018.07.12 3 / 58 gnuplot> gnuplot> plot sin(x) I 2 2018.07.12 4 / 58 cp -r

More information

I

I I 1 2016.07.21 MPI OpenMP 84 1344 gnuplot Xming Tera term cp -r /tmp/160721 chmod 0 L x L y 0 k T (x, t) k: T t = k 2 T x 2 T t = s s : heat source 1D T (x, t) t = k 2 T (x, t) x 2 + s(x) 2D T (x,

More information

05 I I / 56

05 I I / 56 05 I 2015 2015.05.14 I 05 2015.05.14 1 / 56 I 05 2015.05.14 2 / 56 cd mkdir vis01 OK cd vis01 cp /tmp/150514/leibniz.*. I 05 2015.05.14 3 / 56 I 05 2015.05.14 4 / 56 Information visualization Data visualization,

More information

I I / 68

I I / 68 2013.07.04 I 2013 3 I 2013.07.04 1 / 68 I 2013.07.04 2 / 68 I 2013.07.04 3 / 68 heat1.f90 heat2.f90 /tmp/130704/heat2.f90 I 2013.07.04 4 / 68 diff heat1.f90 heat2.f90!! heat2. f 9 0! c m > NGRID! c nmax

More information

gnuplot.dvi

gnuplot.dvi gnuplot gnuplot 1 gnuplot exit 2 10 10 2.1 2 plot x plot sin(x) plot [-20:20] sin(x) plot [-20:20][0.5:1] sin(x), x, cos(x) + - * / ** 5 ** plot 2**x y =2 x sin(x) cos(x) exp(x) e x abs(x) log(x) log10(x)

More information

GNUPLOT 28 3 15 UNIX Microsoft-Windows GNUPLOT 4 GNUPLOT 1 GNUPLOT 2 2 3 2.1 UNIX.......................................... 3 2.2 Windows........................................ 4 2.3..................................

More information

Microsoft PowerPoint - 14Gnuplot.ppt

Microsoft PowerPoint - 14Gnuplot.ppt Gnuplot との連携 Gnuplot による関数の描画 Gnuplot によるデータのプロット Gnuplot による 3-D グラフの描画 Gnuplot による 3-D データのプロット 今日のポイント グラフ描画ソフト gnuplot を体験してみよう Gnuplot とは グラフ描画専用のフリーウェア Windows 版の名称は wgnuplot インストールはフォルダごとコピーするだけ

More information

Microsoft Word - gnuplot

Microsoft Word - gnuplot GNUPLOT の使い方 I. 初期設定 GNUPLOT を最初に起動させたときの Window の文字は小さいので使い難い そこで 文字フォントのサイズを設定します 1.GNUPLOT を起動させます ( 右のような Window が起動します ) 2. 白い領域のどこでも構わないので ポインタを移動して マウスの右ボタンをクリックします ( 右のようにメニューが起動します ) 3. Choose

More information

x1 GNUPLOT 2 x4 12 x1 Gnuplot Gnuplot,,. gnuplot, PS (Post Script), PS ghostview.,.,,,.,., gnuplot,,, (x2). x1.1 Gnuplot (gnuplot, quit) gnuplot,. % g

x1 GNUPLOT 2 x4 12 x1 Gnuplot Gnuplot,,. gnuplot, PS (Post Script), PS ghostview.,.,,,.,., gnuplot,,, (x2). x1.1 Gnuplot (gnuplot, quit) gnuplot,. % g Gnuplot Shigetoshi Yazaki gnuplot(ver. 3.0).,.,. ( ), (, ) 3. x1 Gnuplot 2 x1.1 Gnuplot (gnuplot, quit) : : : : : : : : : : : : : 2 x1.2 (plot) : : : : : : : : : : : : : : : : : : : : : : : : : : : : :

More information

GNUPLOT GNUPLOT GNUPLOT 1 ( ) GNUPLO

GNUPLOT GNUPLOT GNUPLOT 1 ( ) GNUPLO GNUPLOT 2004 10 6 UNIX Microsoft-Windows GNUPLOT 3.7 GNUPLOT 1 GNUPLOT 2 2 2 3 4 4 7 5 9 6 10 7 12 8 13 9 14 10 17 1 GNUPLOT............................... 3 2 MS-Windows GNUPLOT.................... 3

More information

cpall.dvi

cpall.dvi 55 7 gnuplot gnuplot Thomas Williams Colin Kelley Unix Windows MacOS gnuplot ( ) ( ) gnuplot gnuplot 7.1 gnuplot gnuplot () PC(Windows MacOS ) gnuplot http://www.gnuplot.info gnuplot 7.2 7.2.1 gnuplot

More information

きれいなグラフを作ろう!gnuplot 入門 1. 基本 1.1. プロット :test.plt plot x, sin(x) 1.2. データファイルのプロット 1:data.plt plot "data.dat" 1.3. データファイルのプロット 2:data2.plt plot "data2

きれいなグラフを作ろう!gnuplot 入門 1. 基本 1.1. プロット :test.plt plot x, sin(x) 1.2. データファイルのプロット 1:data.plt plot data.dat 1.3. データファイルのプロット 2:data2.plt plot data2 きれいなグラフを作ろう!gnuplot 入門 1. 基本 1.1. プロット :test.plt plot x, sin(x) 1.2. データファイルのプロット 1:data.plt plot "data.dat" 1.3. データファイルのプロット 2:data2.plt plot "data2.dat" using 1:3 2. 例題 2.1. カラーマップ :color_map.plt #

More information

I I / 47

I I / 47 1 2013.07.18 1 I 2013 3 I 2013.07.18 1 / 47 A Flat MPI B 1 2 C: 2 I 2013.07.18 2 / 47 I 2013.07.18 3 / 47 #PJM -L "rscgrp=small" π-computer small: 12 large: 84 school: 24 84 16 = 1344 small school small

More information

3. :, c, ν. 4. Burgers : t + c x = ν 2 u x 2, (3), ν. 5. : t + u x = ν 2 u x 2, (4), c. 2 u t 2 = c2 2 u x 2, (5) (1) (4), (1 Navier Stokes,., ν. t +

3. :, c, ν. 4. Burgers : t + c x = ν 2 u x 2, (3), ν. 5. : t + u x = ν 2 u x 2, (4), c. 2 u t 2 = c2 2 u x 2, (5) (1) (4), (1 Navier Stokes,., ν. t + B: 2016 12 2, 9, 16, 2017 1 6 1,.,,,,.,.,,,., 1,. 1. :, ν. 2. : t = ν 2 u x 2, (1), c. t + c x = 0, (2). e-mail: iwayama@kobe-u.ac.jp,. 1 3. :, c, ν. 4. Burgers : t + c x = ν 2 u x 2, (3), ν. 5. : t +

More information

y2=x2(x+1)-001.ps

y2=x2(x+1)-001.ps gnuplot gnuplot y = x +x y = sinx.8 sin(x) 8 7 6 x*x*x+*x*x.6.. -. -. -.6 -.8 - - - - - - - -. - -. - -.. gnuplot y = cosx gnuplot> set xrange[-.:.] gnuplot> plot x**+*x** gnuolot> reset gnuplot> plot

More information

gnuplot gnuplot 1 3 y = x 3 + 3x 2 2 y = sin x sin(x) x*x*x+3*x*x

gnuplot gnuplot 1 3 y = x 3 + 3x 2 2 y = sin x sin(x) x*x*x+3*x*x gnuplot gnuplot y = x + x y = sin x.8 sin(x) 8 7 6 x*x*x+*x*x.6.. -. -. -.6 -.8 - - - - - - - -. - -. - -.. gnuplot gnuplot> set xrange[-.:.] gnuplot> plot x**+*x** y = x x gnuolot> reset gnuplot> plot

More information

1 1 Gnuplot gnuplot Windows gnuplot gp443win32.zip gnuplot binary, contrib, demo, docs, license 5 BUGS, Chang

1 1 Gnuplot gnuplot   Windows gnuplot gp443win32.zip gnuplot binary, contrib, demo, docs, license 5 BUGS, Chang Gnuplot で微分積分 2011 年度前期 数学解析 I 講義資料 (2011.6.24) 矢崎成俊 ( 宮崎大学 ) 1 1 Gnuplot gnuplot http://www.gnuplot.info/ Windows gnuplot 2011 6 22 4.4.3 gp443win32.zip gnuplot binary, contrib, demo, docs, license 5

More information

datavis_01_

datavis_01_ データ可視化 I 担当 : 坂本尚久 計算科学演習 A 6 年 4 月 8 日 本資料は昨年の陰山先生の資料に坂本が加筆したものです 内容. 可視化とは 次元データの可視化 次元データの可視化 3 次元データの可視化. gnuplot 入門 X Windowシステムの設定 演習 4 3. 課題 可視化 情報可視化 Information Visualization データ可視化 科学的可視化 Data

More information

3. :, c, ν. 4. Burgers : u t + c u x = ν 2 u x 2, (3), ν. 5. : u t + u u x = ν 2 u x 2, (4), c. 2 u t 2 = c2 2 u x 2, (5) (1) (4), (1 Navier Stokes,.,

3. :, c, ν. 4. Burgers : u t + c u x = ν 2 u x 2, (3), ν. 5. : u t + u u x = ν 2 u x 2, (4), c. 2 u t 2 = c2 2 u x 2, (5) (1) (4), (1 Navier Stokes,., B:,, 2017 12 1, 8, 15, 22 1,.,,,,.,.,,,., 1,. 1. :, ν. 2. : u t = ν 2 u x 2, (1), c. u t + c u x = 0, (2), ( ). 1 3. :, c, ν. 4. Burgers : u t + c u x = ν 2 u x 2, (3), ν. 5. : u t + u u x = ν 2 u x 2,

More information

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè2²ó

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè2²ó 2 2015 4 20 1 (4/13) : ruby 2 / 49 2 ( ) : gnuplot 3 / 49 1 1 2014 6 IIJ / 4 / 49 1 ( ) / 5 / 49 ( ) 6 / 49 (summary statistics) : (mean) (median) (mode) : (range) (variance) (standard deviation) 7 / 49

More information

情報活用資料

情報活用資料 y = Asin 2πt T t t = t i i 1 n+1 i i+1 Δt t t i = Δt i 1 ( ) y i = Asin 2πt i T 21 (x, y) t ( ) x = Asin 2πmt y = Asin( 2πnt + δ ) m, n δ (x, y) m, n 22 L A x y A L x 23 ls -l gnuplot gnuplot> plot "sine.dat"

More information

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè2²ó

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè2²ó 2 212 4 13 1 (4/6) : ruby 2 / 35 ( ) : gnuplot 3 / 35 ( ) 4 / 35 (summary statistics) : (mean) (median) (mode) : (range) (variance) (standard deviation) 5 / 35 (mean): x = 1 n (median): { xr+1 m, m = 2r

More information

1.3 2 gnuplot> set samples gnuplot> plot sin(x) sin gnuplot> plot [0:6.28] [-1.5:1.5] sin(x) gnuplot> plot [-6.28:6.28] [-1.5:1.5] sin(x),co

1.3 2 gnuplot> set samples gnuplot> plot sin(x) sin gnuplot> plot [0:6.28] [-1.5:1.5] sin(x) gnuplot> plot [-6.28:6.28] [-1.5:1.5] sin(x),co gnuplot 8 gnuplot 1 1.1 gnuplot gnuplot 2D 3D gnuplot ( ) gnuplot UNIX Windows Machintosh Excel gnuplot C 1.2 web gnuplot $ gnuplot gnuplot gnuplot> exit 1 1.3 2 gnuplot> set samples 1024 1024 gnuplot>

More information

Debian での数学ことはじめ。 - gnuplot, Octave, R 入門

Debian での数学ことはじめ。 - gnuplot, Octave, R 入門 .... Debian gnuplot, Octave, R mkouhei@debian.or.jp IRC nick: mkouhei 2009 11 14 OOo OS diff git diff --binary gnuplot GNU Octave GNU R gnuplot LaTeX GNU Octave gnuplot MATLAB 1 GNU R 1 MATLAB (clone)

More information

Script started on Sun May 26 2::26 22 oyabun% gnuplot G N U P L O T Unix version 3.7 patchlevel ( //8) last modified Fri Oct 22 8:: BST 999 Cop

Script started on Sun May 26 2::26 22 oyabun% gnuplot G N U P L O T Unix version 3.7 patchlevel ( //8) last modified Fri Oct 22 8:: BST 999 Cop gnuplot 22 5 9,28 7 23,2 9, 6 8, 28 9 http://nalab.mind.meiji.ac.jp/~mk/labo/howto/intro-gnuplot/ PDF http://nalab.mind.meiji.ac.jp/~mk/labo/howto/intro-gnuplot.pdf gnuplot gnuplot gnuplot ( UNIX Win32,

More information

理工学図書館後期 LS 講習会 きれいなグラフを作ろう! gnuplot 入門

理工学図書館後期 LS 講習会 きれいなグラフを作ろう! gnuplot 入門 理工学図書館後期 LS 講習会 きれいなグラフを作ろう! gnuplot 入門 gnuplot によるグラフ作成 1 gnuplot コマンド入力形式のグラフ作成ツール 豊富な出力形式を装備 研究や実験のデータ整理に便利 本講習の目的 gnuplot の魅力を体験してみよう! 本日の学習事項 2 1. gnuplotの基本的な使い方 gnuplotに慣れよう 2. スクリプトファイルを用いた使用法

More information

II - ( 02 ) 1,,,, 2, 3. ( ) HP,. 2 MATLAB MATLAB, C Java,,., MATLAB, Workspace, Workspace. Workspace who. whos. MATLAB, MATLAB Workspace. 2.1 Workspac

II - ( 02 ) 1,,,, 2, 3. ( ) HP,. 2 MATLAB MATLAB, C Java,,., MATLAB, Workspace, Workspace. Workspace who. whos. MATLAB, MATLAB Workspace. 2.1 Workspac II - ( 02 ) 1,,,, 2, 3 ( ) HP, 2 MATLAB MATLAB, C Java,,, MATLAB, Workspace, Workspace Workspace who whos MATLAB, MATLAB Workspace 21 Workspace 211 Workspace save, Workspace, MATLAB MAT, load, MAT Workspace

More information

programmingII2019-v01

programmingII2019-v01 II 2019 2Q A 6/11 6/18 6/25 7/2 7/9 7/16 7/23 B 6/12 6/19 6/24 7/3 7/10 7/17 7/24 x = 0 dv(t) dt = g Z t2 t 1 dv(t) dt dt = Z t2 t 1 gdt g v(t 2 ) = v(t 1 ) + g(t 2 t 1 ) v v(t) x g(t 2 t 1 ) t 1 t 2

More information

OpenMP¤òÍѤ¤¤¿ÊÂÎó·×»»¡Ê£±¡Ë

OpenMP¤òÍѤ¤¤¿ÊÂÎó·×»»¡Ê£±¡Ë 2011 5 26 scalar Open MP Hello World Do (omp do) (omp workshare) (shared, private) π (reduction) scalar magny-cours, 48 scalar scalar 1 % scp. ssh / authorized keys 133. 30. 112. 246 2 48 % ssh 133.30.112.246

More information

OpenMP¤òÍѤ¤¤¿ÊÂÎó·×»»¡Ê£²¡Ë

OpenMP¤òÍѤ¤¤¿ÊÂÎó·×»»¡Ê£²¡Ë 2013 5 30 (schedule) (omp sections) (omp single, omp master) (barrier, critical, atomic) program pi i m p l i c i t none integer, parameter : : SP = kind ( 1. 0 ) integer, parameter : : DP = selected real

More information

2 Windows 10 *1 3 Linux 3.1 Windows Bash on Ubuntu on Windows cygwin MacOS Linux OS Ubuntu OS Linux OS 1 GUI Windows Explorer Mac Finder 1 GUI

2 Windows 10 *1 3 Linux 3.1 Windows Bash on Ubuntu on Windows cygwin MacOS Linux OS Ubuntu OS Linux OS 1 GUI Windows Explorer Mac Finder 1 GUI 2017 1 2017 -September I ll remember- 1,2 Linux 6 Linux Linux 2 3 Linux 2 (OS) Windows MacOS OS MacOS Linux 3 Windows Windows ( ) 1. Bash on Ubuntu on Windows ( Windows 10 ) 2. cygwin ( ) 3. VM Ware Linux

More information

web05.dvi

web05.dvi 5 3 copyright c Tatsuya Kitamura / All rights reserved. 57 5 5. 3 MATLAB 3 line plot plot3 MAT plot Z Octave gnuplot splot gsplot OCT 3 splot plot3 MAT plot 5. 5. 5.3 plot 5. >> t=:pi/:*pi; >> plot3(t.*cos(t),t.*sin(t),t)

More information

J6 M.Shimura (1) 1 2 (2) (1824) ( (1842) 1 (1) 1.1 C.Reiter dwin require ad

J6 M.Shimura (1) 1 2 (2) (1824) ( (1842) 1 (1) 1.1 C.Reiter dwin require ad J6 M.Shimura JCD02773@nifty.ne.jp 2011 12 13 1 (1) 1 2 (2)- 12 3 14 4-20 5 24 6 33 60 (1824) ( 100 1760 1849 (1842) 1 (1) 1.1 C.Reiter dwin require addons/graphics/fvj3/dwin2.ijs 1 xy find_maxmin 4 5 calc_each_poly

More information

OpenMP¤òÍѤ¤¤¿ÊÂÎó·×»»¡Ê£±¡Ë

OpenMP¤òÍѤ¤¤¿ÊÂÎó·×»»¡Ê£±¡Ë 2012 5 24 scalar Open MP Hello World Do (omp do) (omp workshare) (shared, private) π (reduction) PU PU PU 2 16 OpenMP FORTRAN/C/C++ MPI OpenMP 1997 FORTRAN Ver. 1.0 API 1998 C/C++ Ver. 1.0 API 2000 FORTRAN

More information

LeapMotion JINS MEME 2019

LeapMotion JINS MEME 2019 LeapMotion JINS MEME 2019 3 1 Mac OS X, Processing, LeapMotion, JINS MEME 11 1.1 Mac OS X.................................... 11 1.2 Processing.................................... 12 1.3 LeapMotion...................................

More information

Foundation (FSF) GNU 1 gnuplot ( ) gnuplot UNIX Windows Machintosh Excel Excel gnuplot C web

Foundation (FSF) GNU 1 gnuplot ( ) gnuplot UNIX Windows Machintosh Excel Excel gnuplot C web gnuplot 2007 7 11 gnuplot C 1 gnuplot gnuplot C gnuplot PGPLOT ROOT 2 2.1 gnuplot gnuplot 2D 3D gnu Free Software 1 Foundation (FSF) GNU 1 gnuplot ( ) gnuplot UNIX Windows Machintosh Excel Excel gnuplot

More information

120802_MPI.ppt

120802_MPI.ppt CPU CPU CPU CPU CPU SMP Symmetric MultiProcessing CPU CPU CPU CPU CPU CPU CPU CPU CPU CPU CPU CPU CP OpenMP MPI MPI CPU CPU CPU CPU CPU CPU CPU CPU CPU CPU MPI MPI+OpenMP CPU CPU CPU CPU CPU CPU CPU CP

More information

gnuplot の使い方 gnuplot は汎用的で しかも手軽に使えるプロッティング プログラムです 計算結果をグラフにするとき に非常に便利なので ぜひ覚えてください 1 gnuplot の始め方 終わり方 gnuplot の始め方は ターミナル上のプロンプトの後ろで gnuplot と打つだけ

gnuplot の使い方 gnuplot は汎用的で しかも手軽に使えるプロッティング プログラムです 計算結果をグラフにするとき に非常に便利なので ぜひ覚えてください 1 gnuplot の始め方 終わり方 gnuplot の始め方は ターミナル上のプロンプトの後ろで gnuplot と打つだけ gnuplot の使い方 gnuplot は汎用的で しかも手軽に使えるプロッティング プログラムです 計算結果をグラフにするとき に非常に便利なので ぜひ覚えてください 1 gnuplot の始め方 終わり方 gnuplot の始め方は ターミナル上のプロンプトの後ろで gnuplot と打つだけです すると /home/snaoki> gnuplot G N U P L O T Version

More information

6.1 OOP Multi Sub a

6.1 OOP Multi Sub a / WIN [ ] Masato SHIMURA JCD2773@nifty.ne.jp Last update 25 4 23 1 J 2 1.1....................................... 2 2 D 2 2.1 numeric trig................................... 6 3 6 3.1 X;Y....................................

More information

Python ( ) Anaconda 2 3 Python Python IDLE Python NumPy 6 5 matpl

Python ( ) Anaconda 2 3 Python Python IDLE Python NumPy 6 5 matpl Python ( ) 2017. 11. 21. 1 1 2 Anaconda 2 3 Python 3 3.1 Python.......................... 3 3.2 IDLE Python....................... 5 4 NumPy 6 5 matplotlib 7 5.1.................................. 7 5.2..................................

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 準備編 CUI とはコマンドの基本知識 * Graphical User Interface マウスで操作 * Command User Interface キーボードによるコマンド入力 CUI の特長 コンピュータはもともとキーボードだけで使える 今でも GUI でなく CUI で使う ( しか使えない ) アプリがある コマンド ( 命令 ) を打ちさえすればやってくれる 明快 コマンドを勉強すればするほど熟練者になれる

More information

untitled

untitled RIKEN AICS Summer School 3 4 MPI 2012 8 8 1 6 MPI MPI 2 allocatable 2 Fox mpi_sendrecv 3 3 FFT mpi_alltoall MPI_PROC_NULL 4 FX10 /home/guest/guest07/school/ 5 1 A (i, j) i+j x i i y = Ax A x y y 1 y i

More information

3 4 17:00 Address: ( ) (Subject) ( ) LeapMotion EyeTribe Processing LeapMotion EyeTribe 1. Mac OS X, LeapMotion, EyeTribe, Proces

3 4 17:00 Address: ( ) (Subject) ( ) LeapMotion EyeTribe Processing LeapMotion EyeTribe 1. Mac OS X, LeapMotion, EyeTribe, Proces LeapMotion EyeTribe 2017 3 4 17:00 Address: e_wata@konan-u.ac.jp ( ) (Subject) ( ) LeapMotion EyeTribe Processing LeapMotion EyeTribe 1. Mac OS X, LeapMotion, EyeTribe, Processing Processing 2. LeapMotion

More information

Unix * 3 PC 2 Linux, Mac *4 Windows Cygwin Cygwin gnuplot Cygwin unix emulator online gnuplot *5 matplotlib *6 SuperMongo *7 gnuplot gnuplot OS *8 Uni

Unix * 3 PC 2 Linux, Mac *4 Windows Cygwin Cygwin gnuplot Cygwin unix emulator online gnuplot *5 matplotlib *6 SuperMongo *7 gnuplot gnuplot OS *8 Uni 2015 8 1 ( ) Unix 1 *1 Unix Unix Unix Perl, Python *2 Unix 2 PC gnuplot *1 100 10 10 6 10 = 10 7 1 1/3 3 10 7 10 7.5 1 24 3600 = (30 6)(30 + 6) 100 = 86400 1 10 7.5 *2 Perl, Python Python 1 Unix * 3 PC

More information

Python (Anaconda ) Anaconda 2 3 Python Python IDLE Python NumPy 6

Python (Anaconda ) Anaconda 2 3 Python Python IDLE Python NumPy 6 Python (Anaconda ) 2017. 05. 30. 1 1 2 Anaconda 2 3 Python 3 3.1 Python.......................... 3 3.2 IDLE Python....................... 5 4 NumPy 6 5 matplotlib 7 5.1..................................

More information

double float

double float 2015 3 13 1 2 2 3 2.1.......................... 3 2.2............................. 3 3 4 3.1............................... 4 3.2 double float......................... 5 3.3 main.......................

More information

dvi

dvi { SSH { 3 3 1 telnet ID ( ) ID ( 1) SSH(Secure SHell) (ID ) SSH SSH SSH login : userid password : himitsu login : userid psaaword: himitsu login : userid password : himitsu 1. Host 11 7 UNIX ( sakura)

More information

資料

資料 PC PC C VMwareをインストールする Tips: VmwareFusion *.vmx vhv.enable = TRUE Tips: Windows Hyper-V -rwxr-xr-x 1 masakazu staff 8552 7 29 13:18 a.out* -rw------- 1 masakazu staff 8552 7 29

More information

tebiki00.dvi

tebiki00.dvi (Linux) [ UNIX ] CMD Workshop ( ) 1 *********************************************************************** * Linux PC-UNIX UNIX * * 99% FreeBSD BSD PC-UNIX * * * ***********************************************************************

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション ファイルシステム 各自自分のファイルシステムは 各自しっかり把握し 整備は自分で行う * 自分のファイルシステムで迷子になる (1) どこにどのファイルがあるのか分からなくなる (2) 今自分はどこで作業しているのか ( つまりカレントディレクトリはどこか ) 分からなくなるのが 実習がうまくできない主な原因のひとつです 迷子になったら Finder で自分のファイルシステムを確認するのが良いでしょう

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション テーマ1 データの 処 理 と 加 工 後 半 :CUI 編 今日の内容について 次回はひたすらターミナル窓でコマンドを打って 実習になります コマンドについて ターミナルの利用 Gnuplotについて 要ブックマーク http://lowrank.net/gnuplot/intro/basic.html 参考 コマンドについての資料 http://tsubame.gsic.titech.ac.jp/tutorials

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 先週欠席の人へ テーマ 1 の実習 A がはじまっています TA の方に助けてもらい追いつきましょう テーマ 1 データの処理と加工 実習 A 図 5 https://titechcomp.github.io/y18-il2j/1a-exercise.html 自習教材のダウンロード ブラウザ Safari を起動 ( 圧縮ファイルの扱いが簡単 ) https://titechcomp.github.io/y18-il2j/14-dataset.html

More information

というプロンプトだったのが gnuplot> というプロンプトに変わっていることに注意してください gnuplot を終了させるときには gnuplot> というプロンプトの後ろで quit と打ちこみます すると /home/snaoki> のようなプロンプトに戻るはずです 2 グラフを描いてみよ

というプロンプトだったのが gnuplot> というプロンプトに変わっていることに注意してください gnuplot を終了させるときには gnuplot> というプロンプトの後ろで quit と打ちこみます すると /home/snaoki> のようなプロンプトに戻るはずです 2 グラフを描いてみよ gnuplot の使い方 gnuplot は汎用的で しかも手軽に使えるプロッティング プログラムです 計算結果をグラフにするとき に便利なので ぜひ覚えてください 1 gnuplot の始めかた 終わりかた gnuplot の始めるには ターミナル上のプロンプトの後ろで gnuplot と打ちます すると /home/snaoki> gnuplot G N U P L O T Version 4.0

More information

Microsoft Word - Win-Outlook.docx

Microsoft Word - Win-Outlook.docx Microsoft Office Outlook での設定方法 (IMAP および POP 編 ) How to set up with Microsoft Office Outlook (IMAP and POP) 0. 事前に https://office365.iii.kyushu-u.ac.jp/login からサインインし 以下の手順で自分の基本アドレスをメモしておいてください Sign

More information

25 II :30 16:00 (1),. Do not open this problem booklet until the start of the examination is announced. (2) 3.. Answer the following 3 proble

25 II :30 16:00 (1),. Do not open this problem booklet until the start of the examination is announced. (2) 3.. Answer the following 3 proble 25 II 25 2 6 13:30 16:00 (1),. Do not open this problem boolet until the start of the examination is announced. (2) 3.. Answer the following 3 problems. Use the designated answer sheet for each problem.

More information

untitled

untitled ...1...3 -... 3 -... 3...5 -... 5 -... 5 -... 6 -... 7 -... 7 -... 7 -... 10 -... 17 -... 17 -... 18 -... 20 -... 21 1 TEL 2 3 4 ) ) 5 6 7 8 9 10 11 () (4) () (4) () () 730-0042730-8586 730-0042 730-0042730-8586

More information

1 28 6 12 7 1 7.1...................................... 2 7.1.1............................... 2 7.1.2........................... 2 7.2...................................... 3 7.3...................................

More information

help gem gem gem my help

help gem gem gem my help hikiutils 1234 2017 3 1 1 6 1.0.1 help gem................... 7 gem.................................... 7 gem................................... 7 my help.................................. 7 my help......................

More information

-2 gnuplot( ) j ( ) gnuplot /shell/myscript 1

-2 gnuplot( ) j ( ) gnuplot /shell/myscript 1 -2 gnuplot( ) j 2006 05 03 2006 05 12 2006 05 09 2 ( ) gnuplot /shell/myscript 1 1 shell script Level 1 myls #!/bin/sh # nowdir= pwd # if [ -f $1 -o -z $1 ] ; then echo "Enter pass" echo "ex) myls.sh./"

More information

StarLogoテキスト(4匹).PDF

StarLogoテキスト(4匹).PDF StarLogo 0010 1100 20-10 3-100 10 1 Filename[ren4-1.slog] filename [kannkyou1.slog] x y 1/11 D: data StarLogo StarLogo2 StarLogo 2/11 D: data StarLogo StarLogo2 StarLogo 1 1 ask-patches [ ] 2 random 0

More information

web06.dvi

web06.dvi 73 6 MATLAB MATLAB GUI GUI M copyright c 2004 Tatsuya Kitamura / All rights reserved. 74 6 6.1 GUI MATLAB GUI property Windows MATLAB UNIX MATLAB GUI Graphical User Interface PC Red Hat Linux 5.2J Vine

More information

0.2 Button TextBox: menu tab 2

0.2 Button TextBox: menu tab 2 Specview VO 2012 2012/9/27 Specview Specview STSCI(Space Telescope SCience Institute) VO Specview Web page http://www.stsci.edu/resources/software hardware/specview http://specview.stsci.edu/javahelp/main.html

More information

S II. AWK. awk awk awk, perl, $ ruby awk awk perl ruby / / perl } WWW CGI awk /9/{print $} <awk.dat awk 9 awk awk awk.dat. awk {print $} <awk.dat xema

S II. AWK. awk awk awk, perl, $ ruby awk awk perl ruby / / perl } WWW CGI awk /9/{print $} <awk.dat awk 9 awk awk awk.dat. awk {print $} <awk.dat xema S II. login UNIX OS Linux GUI cd ~ mkdir APL login..............................3............4 BEGIN END.............. 3.5 -f program-file... 4.6 [-v] var=value...... 4 3 gnuplot 6 3....................

More information

Specview Specview Specview STSCI(Space Telescope SCience Institute) VO Specview Web page htt

Specview Specview Specview STSCI(Space Telescope SCience Institute) VO Specview Web page   htt Specview Specview Specview STSCI(Space Telescope SCience Institute) VO Specview Web page http://www.stsci.edu/resources/software_hardware/specview http://specview.stsci.edu/javahelp/main.html Specview

More information

1

1 PalmGauss SC PGSC-5G Instruction Manual PalmGauss SC PGSC-5G Version 1.01 PalmGauss SC PGSC5G 1.... 3 2.... 3 3.... 3 3.1... 3 3.2... 3 3.3 PalmGauss... 4 3.4... 4 3.4.1 (Fig. 4)... 4 3.4.2 (Fig. 5)...

More information

listings-ext

listings-ext (10) (2) ( ) ohsaki@kwansei.ac.jp 8 (2) 1 8.1.............................. 1 8.2 mobility.fixed.......................... 2 8.3 mobility.randomwalk...................... 7 8.4 mobility.randomwaypoint...................

More information

目 次

目 次 YS20060216 ...1 1 VP-ITC...3.....5. VP-ITC. VP-ITC. -...8.........22......25.....32. Y-Axis...34.......37 ii 10-12 V( ) VP-ITC 150cm 75cm NMR LAN VP-ITC VP-ITC 100VOA 3 VP-ITC 1 VP-ITC *.itc Origin *.opje-mail

More information

C 2 / 21 1 y = x 1.1 lagrange.c 1 / Laglange / 2 #include <stdio.h> 3 #include <math.h> 4 int main() 5 { 6 float x[10], y[10]; 7 float xx, pn, p; 8 in

C 2 / 21 1 y = x 1.1 lagrange.c 1 / Laglange / 2 #include <stdio.h> 3 #include <math.h> 4 int main() 5 { 6 float x[10], y[10]; 7 float xx, pn, p; 8 in C 1 / 21 C 2005 A * 1 2 1.1......................................... 2 1.2 *.......................................... 3 2 4 2.1.............................................. 4 2.2..............................................

More information

1 matplotlib matplotlib Python matplotlib numpy matplotlib Installing A 2 pyplot matplotlib 1 matplotlib.pyplot matplotlib.pyplot plt import import nu

1 matplotlib matplotlib Python matplotlib numpy matplotlib Installing A 2 pyplot matplotlib 1 matplotlib.pyplot matplotlib.pyplot plt import import nu Python Matplotlib 2016 ver.0.06 matplotlib python 2 3 (ffmpeg ) Excel matplotlib matplotlib doc PDF 2,800 python matplotlib matplotlib matplotlib Gallery Matplotlib Examples 1 matplotlib 2 2 pyplot 2 2.1

More information

openmp1_Yaguchi_version_170530

openmp1_Yaguchi_version_170530 並列計算とは /OpenMP の初歩 (1) 今 の内容 なぜ並列計算が必要か? スーパーコンピュータの性能動向 1ExaFLOPS 次世代スハ コン 京 1PFLOPS 性能 1TFLOPS 1GFLOPS スカラー機ベクトル機ベクトル並列機並列機 X-MP ncube2 CRAY-1 S-810 SR8000 VPP500 CM-5 ASCI-5 ASCI-4 S3800 T3E-900 SR2201

More information

Microsoft Word - Meta70_Preferences.doc

Microsoft Word - Meta70_Preferences.doc Image Windows Preferences Edit, Preferences MetaMorph, MetaVue Image Windows Preferences Edit, Preferences Image Windows Preferences 1. Windows Image Placement: Acquire Overlay at Top Left Corner: 1 Acquire

More information

グラフ描画ソフトGnuplotを使う

グラフ描画ソフトGnuplotを使う グラフ描画ソフト gnuplot を使う 目次 1.What is gnuplot?... 1 2.Download and Install gnuplot... 1 3.How to use gnuplot... 4 plot コマンドで 2 次元グラフが簡単に描けます... 4 データファイル text.txt を使って折れ線グラフを描くこともできます.... 4 splot コマンドで 3 次元のグラフも簡単に描くことができます....

More information

# let st1 = {name = "Taro Yamada"; id = };; val st1 : student = {name="taro Yamada"; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n

# let st1 = {name = Taro Yamada; id = };; val st1 : student = {name=taro Yamada; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n II 6 / : 2001 11 21 (OCaml ) 1 (field) name id type # type student = {name : string; id : int};; type student = { name : string; id : int; } student {} type = { 1 : 1 ;...; n : n } { 1 = 1 ;...; n = n

More information

Autumn 2005 1 9 13 14 16 16 DATA _null_; SET sashelp.class END=eof; FILE 'C: MyFiles class.txt'; /* */ PUT name sex age; IF eof THEN DO; FILE LOG; /* */ PUT '*** ' _n_ ' ***'; END; DATA _null_;

More information

Evoltion of onentration by Eler method (Dirihlet) Evoltion of onentration by Eler method (Nemann).2 t n =.4n.2 t n =.4n : t n

Evoltion of onentration by Eler method (Dirihlet) Evoltion of onentration by Eler method (Nemann).2 t n =.4n.2 t n =.4n : t n 5 t = = (, y, z) t (, y, z, t) t = κ (68) κ [, ] (, ) = ( ) A ( /2)2 ep, A =., t =.. (69) 4πκt 4κt = /2 (, t) = for ( =, ) (Dirihlet ondition) (7) = for ( =, ) (Nemann ondition) (7) (68) (, t) = ( ) (

More information

PowerPoint プレゼンテーション - 物理学情報処理演習

PowerPoint プレゼンテーション  -  物理学情報処理演習 物理学情報処理演習 6. C 言語 3 演算 制御文 gnuplot 本日の推奨作業 directory lesson06 2016 年 5 月 24 日 VER 20160524_3 6.1 演算 ( 算術以外 ) 6.2 制御文 参考文献 やさしい C++ 第 4 版高橋麻奈 ( 著 ) ソフトバンククリエイティブ プログラミング言語 C++ 第 4 版ビャーネ ストラウストラップ, Bjarne

More information

演習1: 演習準備

演習1: 演習準備 演習 1: 演習準備 2013 年 8 月 6 日神戸大学大学院システム情報学研究科森下浩二 1 演習 1 の内容 神戸大 X10(π-omputer) について システム概要 ログイン方法 コンパイルとジョブ実行方法 OpenMP の演習 ( 入門編 ) 1. parallel 構文 実行時ライブラリ関数 2. ループ構文 3. shared 節 private 節 4. reduction 節

More information

01_OpenMP_osx.indd

01_OpenMP_osx.indd OpenMP* / 1 1... 2 2... 3 3... 5 4... 7 5... 9 5.1... 9 5.2 OpenMP* API... 13 6... 17 7... 19 / 4 1 2 C/C++ OpenMP* 3 Fortran OpenMP* 4 PC 1 1 9.0 Linux* Windows* Xeon Itanium OS 1 2 2 WEB OS OS OS 1 OS

More information

( ) kadai4, kadai4.zip.,. 3 cos x [ π, π] Python. ( 100 ), x cos x ( ). (, ). def print cos(): print cos()

( ) kadai4, kadai4.zip.,. 3 cos x [ π, π] Python. ( 100 ), x cos x ( ). (, ). def print cos(): print cos() 4 2010.6 1 :, HP.. HP 4 (, PGM/PPM )., python,,, 2, kadai4,.,,, ( )., ( ) N, exn.py ( 3 ex3.py ). N 3.., ( )., ( ) N, (exn.txt).. 1 ( ) kadai4, kadai4.zip.,. 3 cos x [ π, π] Python. ( 100 ), x cos x (

More information

Microsoft PowerPoint - lecture0610v05.pptx

Microsoft PowerPoint - lecture0610v05.pptx Excel によるグラフ作成 (Excel によるグラフ化と gnuplot) 名古屋大学情報基盤センター情報基盤ネットワーク研究部門嶋田創 1 表からグラフを作成 1. 表からグラフにしたい範囲を選択 グラフ上のx 軸系列 (A2-A11) や系列のタイトル (B1) も選択 表のx 軸方向の選択数を増やすことも可能 2. リボン UI 挿入 グラフ 作りたいグラフ グラフによっては 選択範囲が足りない

More information

21 Effects of background stimuli by changing speed color matching color stimulus

21 Effects of background stimuli by changing speed color matching color stimulus 21 Effects of background stimuli by changing speed color matching color stimulus 1100274 2010 3 1 ,.,,.,.,.,,,,.,, ( FL10N-EDL). ( 10cm, 2cm),,, 3.,,,, 4., ( MSS206-402W2J), ( SDM496)., 1200r/min,1200r/min

More information

Autumn 2007 1 5 8 12 14 14 15 %!SASROOT/sassetup SAS Installation Setup Welcome to SAS Setup, the program used to install and maintain your SAS software. SAS Setup guides you through a series of menus

More information

Tya-net Thirteen Rules of Use Tya-net Don't violate the intended use of Tya-net. Tya-net Don't let anyone know your passwords. Use strong passwords. M

Tya-net Thirteen Rules of Use Tya-net Don't violate the intended use of Tya-net. Tya-net Don't let anyone know your passwords. Use strong passwords. M (Tya-net) Tya-net Thirteen Rules of Use Tya-net Don't violate the intended use of Tya-net. Tya-net Don't let anyone know your passwords. Use strong passwords. Make regular backup of critical data. Don't

More information

1

1 1 100 50/60Hz 100 50/60Hz 2 3 4 Windows 4.0SP3 Windows98 4.0SP3 800600 256 1024768 SETUP.EXE 5 [ ] 6 [ OK] [ ] 7 [ OK] [ ] 8 [ OK] [ ] 9 [ ] [ ] [ ] Enter Enter Windows Alt MP-60 10 [ ] F4 [ ] [ ] [ ]

More information

±é½¬£²¡§£Í£Ð£É½éÊâ

±é½¬£²¡§£Í£Ð£É½éÊâ 2012 8 7 1 / 52 MPI Hello World I ( ) Hello World II ( ) I ( ) II ( ) ( sendrecv) π ( ) MPI fortran C wget http://www.na.scitec.kobe-u.ac.jp/ yaguchi/riken2012/enshu2.zip unzip enshu2.zip 2 / 52 FORTRAN

More information

1 1.1 (JCPRG) 30 Nuclear Reaction Data File (NRDF) PC GSYS2.4 JCPRG GSYS2.4 Java Windows, Linux, Max OS X, FreeBSD GUI PNG, GIF, JPEG X Y GSYS2

1 1.1 (JCPRG) 30 Nuclear Reaction Data File (NRDF) PC GSYS2.4 JCPRG GSYS2.4 Java Windows, Linux, Max OS X, FreeBSD GUI PNG, GIF, JPEG X Y GSYS2 (GSYS2.4) GSYS2.4 Manual SUZUKI Ryusuke Hokkaido University Hospital Abstract GSYS2.4 is an update version of GSYS version 2. Main features added in this version are Magnifying glass function, Automatically

More information

0 2 SHIMURA Masato

0 2 SHIMURA Masato 0 2 SHIMURA Masato jcd02773@nifty.com 2009 12 8 1 1 1.1................................... 2 1.2.......................................... 3 2 2 3 2.1............................... 3 2.2.......................................

More information

2.2 Sage I 11 factor Sage Sage exit quit 1 sage : exit 2 Exiting Sage ( CPU time 0m0.06s, Wall time 2m8.71 s). 2.2 Sage Python Sage 1. Sage.sage 2. sa

2.2 Sage I 11 factor Sage Sage exit quit 1 sage : exit 2 Exiting Sage ( CPU time 0m0.06s, Wall time 2m8.71 s). 2.2 Sage Python Sage 1. Sage.sage 2. sa I 2017 11 1 SageMath SageMath( Sage ) Sage Python Sage Python Sage Maxima Maxima Sage Sage Sage Linux, Mac, Windows *1 2 Sage Sage 4 1. ( sage CUI) 2. Sage ( sage.sage ) 3. Sage ( notebook() ) 4. Sage

More information

Microsoft Word - MetaFluor70取扱説明.doc

Microsoft Word - MetaFluor70取扱説明.doc MetaFluor (Version 7.7) MetaFluor 1. MetaFluor MetaFluor Meta Imaging Series 7.x Meta Imaging Series Administrator CCD Meta Imaging Series Administrator CCD Molecular Devices Japan KK/ Imaging Team (1/14)

More information

Dim obwsmgr As New SASWorkspaceManager. WorkspaceManager Dim errstring As String Set obws = obwsmgr.workspaces.createworkspacebyserver( _ "My workspace", VisibilityProcess, Nothing, _ "", "", errstring)

More information

C

C C 1 2 1.1........................... 2 1.2........................ 2 1.3 make................................................ 3 1.4....................................... 5 1.4.1 strip................................................

More information

NX-F5WMD-S,NX-F5WMD-M

NX-F5WMD-S,NX-F5WMD-M COMPACT TEXT DIGITAL AUDIO NX-F5WMD OPEN/CLOSE STANDBY COMPACT COMPONENT MD SYSTEM NX-F5WMD VOLUME SOURCE CD DIRECT REC CD3 REC PAUSE CD2 DISC PITCH CD1 3CD 3CD Changer System/Play & Exchange PHONES CD

More information

New version (2.15.1) of Specview is now available Dismiss Windows Specview.bat set spv= Specview set jhome= JAVA (C:\Program Files\Java\jre<version>\

New version (2.15.1) of Specview is now available Dismiss Windows Specview.bat set spv= Specview set jhome= JAVA (C:\Program Files\Java\jre<version>\ Specview VO 2012 2012/3/26 Specview Specview STSCI(Space Telescope SCience Institute) VO Specview Web page http://www.stsci.edu/resources/software hardware/specview http://specview.stsci.edu/javahelp/main.html

More information

探査実習会資料_第2章_SPデータに触ってみよう.key

探査実習会資料_第2章_SPデータに触ってみよう.key 2. SP 1 By Satoru Yamamoto SP in C SPINCforTANSA140121.tar.gz (e.g., X11) e.g., gnuplot) (e.g, vi) (e.g., or ) 2 3 2.1 spinc 2.1 spinc &tar (1) SPINCforTANSA140121.tar.gz (2) terminal spinc (3) > tar xvf

More information

sarupaw.dvi

sarupaw.dvi PAW Which Even Monkeys Can Use H.Kitamura & His Company 9 8 19 preface PAW Which Even Monkies Can Use bold itaric vector ntuple v nt ( ) quit e-mail kitamura@phys01.phys.kobe-u.ac.jp homepage http://phys01.phys.kobe-u.ac.jp:2080/~kohama/sarupaw.html

More information

LM35 高精度・摂氏直読温度センサIC

LM35 高精度・摂氏直読温度センサIC Precision Centigrade Temperature Sensors Literature Number: JAJSB56 IC A IC D IC IC ( ) IC ( K) 1/4 55 150 3/4 60 A 0.1 55 150 C 40 110 ( 10 ) TO-46 C CA D TO-92 C IC CA IC 19831026 24120 11800 ds005516

More information

by CASIO W61CA For Those Requiring an English/Chinese Instruction

by CASIO W61CA     For Those Requiring an English/Chinese Instruction by CASIO W61CA http://www.au.kddi.com/torisetsu/index.html http://www.au.kddi.com/manual/index.html For Those Requiring an English/Chinese Instruction Manual English/Chinese Simple Manual can be read on

More information

1 I EViews View Proc Freeze

1 I EViews View Proc Freeze EViews 2017 9 6 1 I EViews 4 1 5 2 10 3 13 4 16 4.1 View.......................................... 17 4.2 Proc.......................................... 22 4.3 Freeze & Name....................................

More information