14 2 Scilab Scilab GUI インタグラフ プリタ描画各種ライブラリ (LAPACK, ODEPACK, ) SciNOTES ハードウェア (CPU, GPU) 21 Scilab SciNotes 呼び出し 3 変数ブラウザ 1 ファイルブラウザ 2 コンソール 4 コマンド履歴

Size: px
Start display at page:

Download "14 2 Scilab Scilab GUI インタグラフ プリタ描画各種ライブラリ (LAPACK, ODEPACK, ) SciNOTES ハードウェア (CPU, GPU) 21 Scilab SciNotes 呼び出し 3 変数ブラウザ 1 ファイルブラウザ 2 コンソール 4 コマンド履歴"

Transcription

1 13 2 Scilab Scilab Scilab 21 Scilab Scilab[4] INRIA C/C++, Fortran LAPACK Matlab Scilab Web Windows 10/8x MacOS X, Linux Scilab Octave Matlab (Matlab Toolbox) (Mathematica Web 22 Scilab Scilab GUI 22 Windows GUI GUI Scilab (sce Scilab

2 14 2 Scilab Scilab GUI インタグラフ プリタ描画各種ライブラリ (LAPACK, ODEPACK, ) SciNOTES ハードウェア (CPU, GPU) 21 Scilab SciNotes 呼び出し 3 変数ブラウザ 1 ファイルブラウザ 2 コンソール 4 コマンド履歴 22 Scilab Windows GUI ) 2 Scilab 3 Scilab 4 Scilab Scilab Scilab

3 22 Scilab 15 1 Scilab (SciNotes) Scilab ) Scilab SciNotes Scilab IEEE754 (8 Byte, 2 53bits, ) (variable) Vec vec -->Vec = 3 Vec = Vec >vec = 2 vec = 2 clear -->Vec Vec = Vec 3 -->clear Vec Vec -->Vec!--error 4 : Vec Vec ; -->Vec = 3 Vec 3 Vec Vec = 3 -->Vec; Vec

4 16 2 Scilab -->Vec Vec = Vec 3 -->Vec + vec Vec vec 5 -->Vec - vec Vec vec 1 -->Vec * vec Vec vec 6 -->Vec / vec Vec vec 15 Scilab (x y ) 2 -->2ˆ(1/2) >2ˆ(05)

5 >sqrt(2) Scilab format 16 -->2ˆ(1/3) >format(20) 20 -->2ˆ(1/3) /3 = Scilab ( ) ( ) inputsce Scilab (11 ) SciNotes C++ //( ) input 1: 1: // 2: a = input("a > "); // 3: b = input("b > "); a, b

6 18 2 Scilab 3 a, b} \verbdisp printf 4: ( ) 5: // 6: disp("a = "); disp(a); // 7: printf("b = %2517e\n", b); // C printf SciNotes a 3 b 4 a > 3 3 b > 4 4 a = b = e+00 a + b a - b 8: ( ) 9: // 10: disp("a + b = "); disp(a + b); 11: printf(" a - b = %2517e\n", a - b); 24 Scilab Scilab % π = %pi e = %e -->format(20) -->%pi %pi =

7 >%e %e = i = 1 %i -->%i %i = i -->%iˆ2-1 -->c = * %i c = 3 + 2i complex -->c = complex(3,2) c = 3 + 2i 21 c = 2 + 3i, d = 2i 1 ic + (3 + 2i)d 2 ( i)cd

8 20 2 Scilab 25 (list) [ ] (,) -->a = [1, 2, 3] a = ; -->a = [1; 2; 3] a = ( ) -->a = [1; 2; 3] a = >a ( ) -->a = [1+%i; 2 + %i; 3+%i] a =

9 i 2 + i 3 + i -->a 1 - i 2 - i 3 - i -->a 1 + i 2 + i 3 + i v = 3 2 1, w = v + w, w v, 2v Scilab Scilab v vec_v w vec_w vec_v = [3; 2; 1] vec_w = [-4; -3; -2] -->vec_v + vec_w >vec_w - vec_v - 7-5

10 22 2 Scilab >2ˆ(1/2) * vec_v a = [ ] T, b = [ ] T Scilab a 3a + 2b b (a 5b) + 4b Scilab prob22sce 2 c = [2 + 3i 2 3i] T, d = [2i 3i] T C 2 a ic + (3 + 2i)d b ( i)cd T 26 A, B R A = 4 5 6, B = mat_a, mat_b mat_a = [-1, -2, -3; -4, -5, -6; -7, -8, -9]; mat_b = [-9, -8, -7; -6, -5, -4; -3, -2, -1]; A + B, A B, AB mat_a + mat_b mat_a - mat_b mat_a * mat_b

11 27 23 mat_a * vec_v mat_b * vec_w 23 A, B R 4 4 A = , B = A + 2B 2 A 2 3 3A 2 + 4B 27 Scilab C/C++ do, while, for 3 for for for = :( :) end; 1 v = [ ] T R 5 vec_v vec_v = [] // ( ) for i = 1:5 vec_v(i) = -i; end; disp("vec_v = "); disp(vec_v); // vec_v for A R n n

12 24 2 Scilab A = [ (i + j) 1] n i,j=1 = 1 2 n 2 3 (n + 1) n (n + 1) (2n 1) n = 5 mat_a = []; // ( ) n = 5; // for i = 1:n for j = 1:n mat_a(i, j) = -(i + j - 1); end; end; disp("mat_a = "); disp(mat_a); // mat_a B R n n B = n n 1 1 n 1 n = [n max(i, j) + 1] n i,j=1 n = 5; // 5 b = []; for i = 1:n for j = 1:n b(i, j) = n - max(i, j) + 1; end; end; disp("b = "); disp(b); inv disp("bˆ(-1) = ") b_inv = inv(b); disp(inv(b)); BB 1 = I n

13 27 25 disp("b * bˆ(-1) = "); disp(b * b_inv); eye disp(" I - B * Bˆ(-1) _2 = ") disp(norm(eye(n,n) - b * b_inv)) 24 H R n n H = [1/(i + j 1)] n i,j=1 = 1 1/2 1/n 1/2 1/3 1/(n + 1) 1/n 1/(n + 1) 1/(2n 1) n N n hilbertsce n = 3, 4, 5

31 4 MATLAB A, B R 3 3 A = , B = mat_a, mat_b >> mat_a = [-1, -2, -3; -4, -5, -6; -7, -8, -9] mat_a =

31 4 MATLAB A, B R 3 3 A = , B = mat_a, mat_b >> mat_a = [-1, -2, -3; -4, -5, -6; -7, -8, -9] mat_a = 3 4 MATLAB 3 4. A, B R 3 3 2 3 4 5 6 7 8 9, B = mat_a, mat_b >> mat_a = [-, -2, -3; -4, -5, -6; -7, -8, -9] 9 8 7 6 5 4 3 2 mat_a = - -2-3 -4-5 -6-7 -8-9 >> mat_b = [-9, -8, -7; -6, -5, -4; -3, -2, -]

More information

-1-1 1 1 1 1 12 31 2 2 3 4

-1-1 1 1 1 1 12 31 2 2 3 4 2007 -1-1 1 1 1 1 12 31 2 2 3 4 -2-5 6 CPU 3 Windows98 1 -3-2. 3. -4-4 2 5 1 1 1 -5- 50000 50000 50000 50000 50000 50000 50000 50000 50000 50000-6- -7-1 Windows 2 -8-1 2 3 4 - - 100,000 200,000 500,000

More information

untitled

untitled 16 4 1 17 1 50 -1- -2- -3- -4- -5- -6- -7- 1 2-8- -9- -10- -11- Web -12- (1) (2)(1) (3) (4) (1)()(2) (3)(4) -13- -14- -15- -16- -17- -18- -19- -20- -21- -22- -23- (2)(1) (3) -24- -25- -26- -27- -28- -29-

More information

Microsoft Word - scilab_intro.doc

Microsoft Word - scilab_intro.doc Scilab の使い方 (1/14) Scilab は "SCIence LABoratory" の略 フランスの国立研究機関 INRIA (Institut National de Recherche en Informatique et Automatique) が作成 配布しているフリーのシミュレーション ソフト Scilab のホームページは http://www-rocq.inria.fr/scilab/

More information

untitled

untitled ( x, T ( x, T = D t T, x, t, (1-1) x D T T HP 005 HP http://www.nuce.nagoyau.ac.jp/e8/matsuoka/mathce/05mathce.html 10/18 T ( x, 0) = Ti ( x) (1-) T ( 0, = Tb0( T ( l, = Tbe ( (1-3) 1 Dirichlet Excel Octave

More information

V. 7 1 ICD ICD F00 F99 2 ICD G40 3 1 1. 2. 3. 4. 2 1. 2. 3. 4. 3 1. 2. 3. 4 1. 2. 3. 4. 5 1. 2. 3. 4. 6 1. 2. 3. 4. 5. 6. 7 1. 2. 3. 4. 5. 8 1. 2. 3. 9 1. 2. 3. 4..... 10 1.... 2. 3. 4..... 5. 6. 7.

More information

EP760取扱説明書

EP760取扱説明書 D D D # % ' ) * +, B - B / 1 Q&A B 2 B 5 B 6 Q & A 7 8 $ % & ' B B B ( B B B B B B B B B B B ) B B B A # $ A B B * 1 2 # $ % # B B % $ # $ % + B B 1 B 2 B B B B B B B B B B , B B B - 1 3 2 2 B B B B B

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 0 1 2 3 4 5 6 1964 1978 7 0.0015+0.013 8 1 π 2 2 2 1 2 2 ( r 1 + r3 ) + π ( r2 + r3 ) 2 = +1,2100 9 10 11 1.9m 3 0.64m 3 12 13 14 15 16 17 () 0.095% 0.019% 1.29% (0.348%) 0.024% 0.0048% 0.32% (0.0864%)

More information

: : : : ) ) 1. d ij f i e i x i v j m a ij m f ij n x i =

: : : : ) ) 1. d ij f i e i x i v j m a ij m f ij n x i = 1 1980 1) 1 2 3 19721960 1965 2) 1999 1 69 1980 1972: 55 1999: 179 2041999: 210 211 1999: 211 3 2003 1987 92 97 3) 1960 1965 1970 1985 1990 1995 4) 1. d ij f i e i x i v j m a ij m f ij n x i = n d ij

More information

橡matufw

橡matufw 3 10 25 3 18 42 1 2 6 2001 8 22 3 03 36 3 4 A 2002 2001 1 1 2014 28 26 5 9 1990 2000 2000 12 2000 12 12 12 1999 88 5 2014 60 57 1996 30 25 205 0 4 120 1,5 A 1995 3 1990 30 6 2000 2004 2000 6 7 2001 5 2002

More information

O

O 11 2 1 2 1 1 2 1 80 2 160 3 4 17 257 1 2 1 2 3 3 1 2 138 1 1 170 O 3 5 1 5 6 139 1 A 5 2.5 A 1 A 1 1 3 20 5 A 81 87 67 A 140 11 12 2 1 1 1 12 22 1 10 1 13 A 2 3 2 6 1 B 2 B B B 1 2 B 100 B 10 B 3 3 B 1

More information

広報さっぽろ 2016年8月号 厚別区

広報さっぽろ 2016年8月号 厚別区 8/119/10 P 2016 8 11 12 P4 P6 P6 P7 13 P4 14 15 P8 16 P6 17 18 19 20 P4 21 P4 22 P7 23 P6 P7 24 25 26 P4 P4 P6 27 P4 P7 28 P6 29 30 P4 P5 31 P5 P6 2016 9 1 2 3 P4 4 P4 5 P5 6 7 8 P4 9 10 P4 1 b 2 b 3 b

More information

FdData社会地理

FdData社会地理 [ [ 1(3 ) [ 2(3 ) A C [ [ [ 3(2 ) (1) X Y Z (2) X Y Z 3,000m [ 4(3 ) [ [ [ 5(2 ) ( ) 1 [ [ 6( ) (1) A (2) (1) B [ 7(3 ) (1) A (2) A (3) A 2 [ 8(2 ) [ 9(3 ) 2 [ 10(2 ) A H [ [ 11( ) A H 3 3 [ 12(2 ) [ (

More information

消防力適正配置調査報告

消防力適正配置調査報告 8 5 5 20 11 22 4 25 1.1 1 1.2 1 1.3 2 2.1 6 2.2 6 2.3 8 2.4 8 2.5 9 3.1 10 3.2 10 3.3 13 4.1 15 4.2 17 4.3 19 4.4 21 4.5 23 (1) - 1 - (2) (1) ()1 ( ) 8 1 1 143 116 (2) 1-2 - 26 24 19 24 6 21 24 4 19 24

More information

Microsoft Word - 01Ł\”ƒ.doc

Microsoft Word - 01Ł\”ƒ.doc 226821,416* 13,226 22 62,640 46,289 13,226 28.6 * 8,030 4,788 408 13,226 2,249 2,868 55 5,173 2,153 716 93 2,962 3,628 1,204 260 5,092 173 10 361 25.5% 40 220 112 50.9% 4,922 804 16.3% 3040 141 54 38.3%

More information

- 1 - - 0.5%5 10 10 5 10 1 5 1

- 1 - - 0.5%5 10 10 5 10 1 5 1 - - - 1 - - 0.5%5 10 10 5 10 1 5 1 - 2 - - - - A B A A A B A B B A - 3 - - 100 100 100 - A) ( ) B) A) A B A B 110 A B 13 - 4 - A) 36 - - - 5 - - 1 - 6-1 - 7 - - 8 - Q.15 0% 10% 20% 30% 40% 50% 60% 70%

More information

EPSON エプソンプリンタ共通 取扱説明書 ネットワーク編

EPSON エプソンプリンタ共通 取扱説明書 ネットワーク編 K L N K N N N N N N N N N N N N L A B C N N N A AB B C L D N N N N N L N N N A L B N N A B C N L N N N N L N A B C D N N A L N A L B C D N L N A L N B C N N D E F N K G H N A B C A L N N N N D D

More information

ありがとうございました

ありがとうございました - 1 - - 2 - - 3 - - 4 - - 5 - 1 2 AB C A B C - 6 - - 7 - - 8 - 10 1 3 1 10 400 8 9-9 - 2600 1 119 26.44 63 50 15 325.37 131.99 457.36-10 - 5 977 1688 1805 200 7 80-11 - - 12 - - 13 - - 14 - 2-1 - 15 -

More information

EPSON エプソンプリンタ共通 取扱説明書 ネットワーク編

EPSON エプソンプリンタ共通 取扱説明書 ネットワーク編 K L N K N N N N N N N N N N N N L A B C N N N A AB B C L D N N N N N L N N N A L B N N A B C N L N N N N L N A B C D N N A L N A L B C D N L N A L N B C N N D E F N K G H N A B C A L N N N N D D

More information

公務員人件費のシミュレーション分析

公務員人件費のシミュレーション分析 47 50 (a) (b) (c) (7) 11 10 2018 20 2028 16 17 18 19 20 21 22 20 90.1 9.9 20 87.2 12.8 2018 10 17 6.916.0 7.87.4 40.511.6 23 0.0% 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2.0% 4.0% 6.0% 8.0%

More information

Q1 Q2 Q3 Q4 Q1 Q2 Q3 Q4 A B (A/B) 1 1,185 17,801 6.66% 2 943 26,598 3.55% 3 3,779 112,231 3.37% 4 8,174 246,350 3.32% 5 671 22,775 2.95% 6 2,606 89,705 2.91% 7 738 25,700 2.87% 8 1,134

More information

橡hashik-f.PDF

橡hashik-f.PDF 1 1 1 11 12 13 2 2 21 22 3 3 3 4 4 8 22 10 23 10 11 11 24 12 12 13 25 14 15 16 18 19 20 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 144 142 140 140 29.7 70.0 0.7 22.1 16.4 13.6 9.3 5.0 2.9 0.0

More information

198

198 197 198 199 200 201 202 A B C D E F G H I J K L 203 204 205 A B 206 A B C D E F 207 208 209 210 211 212 213 214 215 A B 216 217 218 219 220 221 222 223 224 225 226 227 228 229 A B C D 230 231 232 233 A

More information

1

1 1 2 3 4 5 (2,433 ) 4,026 2710 243.3 2728 402.6 6 402.6 402.6 243.3 7 8 20.5 11.5 1.51 0.50.5 1.5 9 10 11 12 13 100 99 4 97 14 A AB A 12 14.615/100 1.096/1000 B B 1.096/1000 300 A1.5 B1.25 24 4,182,500

More information

05[ ]戸田(責)村.indd

05[ ]戸田(責)村.indd 147 2 62 4 3.2.1.16 3.2.1.17 148 63 1 3.2.1.F 3.2.1.H 3.1.1.77 1.5.13 1 3.1.1.05 2 3 4 3.2.1.20 3.2.1.22 3.2.1.24 3.2.1.D 3.2.1.E 3.2.1.18 3.2.1.19 2 149 3.2.1.23 3.2.1.G 3.1.1.77 3.2.1.16 570 565 1 2

More information

/9/ ) 1) 1 2 2) 4) ) ) 2x + y 42x + y + 1) 4) : 6 = x 5) : x 2) x ) x 2 8x + 10 = 0

/9/ ) 1) 1 2 2) 4) ) ) 2x + y 42x + y + 1) 4) : 6 = x 5) : x 2) x ) x 2 8x + 10 = 0 1. 2018/9/ ) 1) 8 9) 2) 6 14) + 14 ) 1 4 8a 8b) 2 a + b) 4) 2 : 7 = x 8) : x ) x ) + 1 2 ) + 2 6) x + 1)x + ) 15 2. 2018/9/ ) 1) 1 2 2) 4) 2 + 6 5) ) 2x + y 42x + y + 1) 4) : 6 = x 5) : x 2) x 2 15 12

More information

ネットショップ・オーナー2 ユーザーマニュアル

ネットショップ・オーナー2  ユーザーマニュアル 1 1-1 1-2 1-3 1-4 1 1-5 2 2-1 A C 2-2 A 2 C D E F G H I 2-3 2-4 2 C D E E A 3 3-1 A 3 A A 3 3 3 3-2 3-3 3-4 3 C 4 4-1 A A 4 B B C D C D E F G 4 H I J K L 4-2 4 C D E B D C A C B D 4 E F B E C 4-3 4

More information

1 (bit ) ( ) PC WS CPU IEEE754 standard ( 24bit) ( 53bit)

1 (bit ) ( ) PC WS CPU IEEE754 standard ( 24bit) ( 53bit) GNU MP BNCpack tkouya@cs.sist.ac.jp 2002 9 20 ( ) Linux Conference 2002 1 1 (bit ) ( ) PC WS CPU IEEE754 standard ( 24bit) ( 53bit) 10 2 2 3 4 5768:9:; = %? @BADCEGFH-I:JLKNMNOQP R )TSVU!" # %$ & " #

More information

analog-control-mod : 2007/2/4(8:44) 2 E8 P M () r e K P ( ) T I u K M T M K D E8.: DC PID K D E8. (E8.) P M () E8.2 K P D () ( T ) (E8.2) K M T M K, T

analog-control-mod : 2007/2/4(8:44) 2 E8 P M () r e K P ( ) T I u K M T M K D E8.: DC PID K D E8. (E8.) P M () E8.2 K P D () ( T ) (E8.2) K M T M K, T analog-control-mod : 2007/2/4(8:44) E8 E8. PID DC. PID 2. DC PID 3. E8.2 DC PID C8 E8. DC PID E6 DC P M () K M ( T M ) (E8.) DC PID C8 E8. r e u E8.2 PID E8. PID analog-control-mod : 2007/2/4(8:44) 2 E8

More information

/Users/yamada/Documents/webPage/public_html/kkk/10 線形代数

/Users/yamada/Documents/webPage/public_html/kkk/10 線形代数 8 Mathematica In[]:= 8, 2, 3< Out[]= 8, 2, 3< In[2]:= 88, 2, 3

More information

. UNIX, Linux, KNOPPIX. C,.,., ( 1 ) p. 2

. UNIX, Linux, KNOPPIX. C,.,., ( 1 ) p. 2 2009 ( 1 ) 2009 ( 1 ) p. 1 . UNIX, Linux, KNOPPIX. C,.,.,. 2009 ( 1 ) p. 2 , +, ( ), ( ), or PC orange2, knxm2008vm, iyokan-6 KNOPPIX/Math (DVD ) 2009 ( 1 ) p. 3 ,. Mathematica (20-30 /1 ), Maple (20 /1

More information

夏目小兵衛直克

夏目小兵衛直克 39(1906)1222 14(1817) 3(1832)1514(1843) 2628 6 (1853) (1854)3727 3(1856) 1 / 13 5(1858)6(1859) 5(1853) () () () () () () 3(1867)29 504111( 2 / 13 )98 23 18 2(1869)310283 100 50() 58 226 3313200982 5033

More information

-1-

-1- -1- -2- -3-1 8 6% 2 4 6 8 1 48 63 43 6 55 38 78 58 2 88 67 11 22 78 1 56 22 89 47 34 36 32 38 4 34 26 7 -4- 18-5- 3 25 28 (6.%) (6.%) (.9%) 2 15 18 158 1 (3.8%) (56.4%) 5 2 137 27 8 1 68 119 26 71 28 65

More information

( )

( ) Web Web 1 3 1 21 11 22 23 24 3 2 3 4 5 1 1 11 22 9 2 3 15 11 22 2 11 21 4 5 ( ) 102 ( ) 1 ( 1 2001 Web 1 5 4 1 1 - 7 - [] - 7 10 11 12 12 1 10 1 12 - [] 1 1 2 Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8 Q9 Q10 3 1 47

More information

nenkin.PDF

nenkin.PDF 1 31 1 WEB 10 3,544 429 13 10 22 11 7 WEB 1 2 41.0 15 80.0 20 46.7% 1000 55.8 1000 34.4 21 18.2 1000 23 25 41.0 49.2 29 90.6 42.7 33 56.4% 79.2% 67.4 51.7 37 39 83.7 1 91.0 93.6 9 2 3 1000 96.3 300 1000

More information

, MATLAB LMI MATLAB Mathematica Maple Mathematica Control System Professional 2 LMI MATLAB Mathematica Maple MATLAB SCILAB SCILAB MATLAB

, MATLAB LMI MATLAB Mathematica Maple Mathematica Control System Professional 2 LMI MATLAB Mathematica Maple MATLAB SCILAB SCILAB MATLAB J.JSSAC (2005) Vol. 11, No. 3,4, pp. 99-117 Noda2005 SCILAB 1 Matlab is one of the most popular commercial software among the researchers in the area of control and system engineering. Although Matlab

More information

<4D F736F F D2095BD90AC E937890B68A888F4B8AB E397C394EF82CC93AE8CFC82C98AD682B782E992B28DB895AA90CD2E646F6378>

<4D F736F F D2095BD90AC E937890B68A888F4B8AB E397C394EF82CC93AE8CFC82C98AD682B782E992B28DB895AA90CD2E646F6378> 28 3 IT 1,124 1,414 9,986 1,205 247 2 6,663 6,802 3 4,155 ICD-10 p.2 26 3 4,155 1,124 10 3,628 10.62% 10 31.29%30.75%15.62% 36.31% 29.88%20.94% 928 692 412 205 6,127 4,971 3,246 2,291 1,968 1,658 35.77

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

1009.\1.\4.ai

1009.\1.\4.ai - 1 - E O O O O O O - 2 - E O O O - 3 - O N N N N N N N N N N N N N N N N N N N N N N N E e N N N N N N N N N N N N N N N N N N N N N N N D O O O - 4 - O O O O O O O O N N N N N N N N N N N N N N N N N

More information

1 Scilab 1.1 PDF Scilab URL http://st4a.stelab.nagoya-u.ac.jp/machidalab/enshu2013.html ( ) 1.2 Scilab Scilab () MATLAB ( ) MATLAB Windows Scilab linux PC Scilab URL http://www.scilab.org/download/ (Scilab

More information

2 1 Octave Octave Window M m.m Octave Window 1.2 octave:1> a = 1 a = 1 octave:2> b = 1.23 b = octave:3> c = 3; ; % octave:4> x = pi x =

2 1 Octave Octave Window M m.m Octave Window 1.2 octave:1> a = 1 a = 1 octave:2> b = 1.23 b = octave:3> c = 3; ; % octave:4> x = pi x = 1 1 Octave GNU Octave Matlab John W. Eaton 1992 2.0.16 2.1.35 Octave Matlab gnuplot Matlab Octave MATLAB [1] Octave [1] 2.7 Octave Matlab Octave Octave 2.1.35 2.5 2.0.16 Octave 1.1 Octave octave Octave

More information

( ) Shift JIS ( ) ASCII ASCII ( ) 8bit = 1 Byte JIS(Japan Industrial Standard) X 0201 (X ) 2 Byte JIS ISO-2022-JP, Shift JIS, EUC 1 Byte 2 By

( ) Shift JIS ( ) ASCII ASCII ( ) 8bit = 1 Byte JIS(Japan Industrial Standard) X 0201 (X ) 2 Byte JIS ISO-2022-JP, Shift JIS, EUC 1 Byte 2 By 23 3 ( ( (binary file) UNIX CUI 3.1 = + 2 bit ) ( 3.1) bit bit 1 Byte=8 bit 1 Byte ASCII, JIS X 0201 ASCII(American Standard Code for Information Interchange) 7bit (;) (:) ( ) (") ) 7bit ( ) 24 3 3.1 (

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

untitled

untitled A = QΛQ T A n n Λ Q A = XΛX 1 A n n Λ X GPGPU A 3 T Q T AQ = T (Q: ) T u i = λ i u i T {λ i } {u i } QR MR 3 v i = Q u i A {v i } A n = 9000 Quad Core Xeon 2 LAPACK (4/3) n 3 O(n 2 ) O(n 3 ) A {v i }

More information

all.dvi

all.dvi fortran 1996 4 18 2007 6 11 2012 11 12 1 3 1.1..................................... 3 1.2.............................. 3 2 fortran I 5 2.1 write................................ 5 2.2.................................

More information

10 25 2528 4 46 2010 2010 0 20103 Certocystis fimbriata 7 Certocystis fimbriata 2530 M A IC66D IC-66D (4080 IC66D IC66D 1 IC IC-66D IC-66D 66 IC-66 66 IC66D80 100 10 0.3 mm 0.4mm 1.4mm mm 1 2 3 100

More information

ohp1.dvi

ohp1.dvi 2008 1 2008.10.10 1 ( 2 ) ( ) ( ) 1 2 1.5 3 2 ( ) 50:50 Ruby ( ) Ruby http://www.ruby-lang.org/ja/ Windows Windows 3 Web Web http://lecture.ecc.u-tokyo.ac.jp/~kuno/is08/ / ( / ) / @@@ ( 3 ) @@@ :!! ( )

More information

AHPを用いた大相撲の新しい番付編成

AHPを用いた大相撲の新しい番付編成 5304050 2008/2/15 1 2008/2/15 2 42 2008/2/15 3 2008/2/15 4 195 2008/2/15 5 2008/2/15 6 i j ij >1 ij ij1/>1 i j i 1 ji 1/ j ij 2008/2/15 7 1 =2.01/=0.5 =1.51/=0.67 2008/2/15 8 1 2008/2/15 9 () u ) i i i

More information

p03.dvi

p03.dvi 301 3 : 1 (1) f(x) = 0 f(x) x.,, z. : 2 (2) z f(z) = a 0 z n +a 1 z n 1 + +a n 1 z +a n f(z) = 0 ( ),. a 0, a n. : 3 (3),, B(s) = b 0s m +b 1 s m 1 + +b 0 A(s) s n +a 1 s n 1 +a n, (s n +a 1 s n 1 +a n

More information

, 1. x 2 1 = (x 1)(x + 1) x 3 1 = (x 1)(x 2 + x + 1). a 2 b 2 = (a b)(a + b) a 3 b 3 = (a b)(a 2 + ab + b 2 ) 2 2, 2.. x a b b 2. b {( 2 a } b )2 1 =

, 1. x 2 1 = (x 1)(x + 1) x 3 1 = (x 1)(x 2 + x + 1). a 2 b 2 = (a b)(a + b) a 3 b 3 = (a b)(a 2 + ab + b 2 ) 2 2, 2.. x a b b 2. b {( 2 a } b )2 1 = x n 1 1.,,.,. 2..... 4 = 2 2 12 = 2 2 3 6 = 2 3 14 = 2 7 8 = 2 2 2 15 = 3 5 9 = 3 3 16 = 2 2 2 2 10 = 2 5 18 = 2 3 3 2, 3, 5, 7, 11, 13, 17, 19.,, 2,.,.,.,?.,,. 1 , 1. x 2 1 = (x 1)(x + 1) x 3 1 = (x 1)(x

More information

スパコンに通じる並列プログラミングの基礎

スパコンに通じる並列プログラミングの基礎 2018.09.10 furihata@cmc.osaka-u.ac.jp ( ) 2018.09.10 1 / 59 furihata@cmc.osaka-u.ac.jp ( ) 2018.09.10 2 / 59 Windows, Mac Unix 0444-J furihata@cmc.osaka-u.ac.jp ( ) 2018.09.10 3 / 59 Part I Unix GUI CUI:

More information

スパコンに通じる並列プログラミングの基礎

スパコンに通じる並列プログラミングの基礎 2018.06.04 2018.06.04 1 / 62 2018.06.04 2 / 62 Windows, Mac Unix 0444-J 2018.06.04 3 / 62 Part I Unix GUI CUI: Unix, Windows, Mac OS Part II 2018.06.04 4 / 62 0444-J ( : ) 6 4 ( ) 6 5 * 6 19 SX-ACE * 6

More information

network [4] に統合し 2008 年 9 月に Scilab 5.0 がリリー スされた Scilab 5.0 からは GNU GENERAL PUBLIC LICENSE Version 2 [7] に相当する CeCILL ラインセンス [2] を採用しており 決められたルールのもとで

network [4] に統合し 2008 年 9 月に Scilab 5.0 がリリー スされた Scilab 5.0 からは GNU GENERAL PUBLIC LICENSE Version 2 [7] に相当する CeCILL ラインセンス [2] を採用しており 決められたルールのもとで 第23回 信号処理シンポジウム 2008年11月12日 14日 金沢 Scilab 5.0 の紹介 Introduction to Scilab 5.0 大野 修一 Shuichi OHNO アブストラクト 末岡 佑之輔 広島大学工学研究科 東広島市鏡山 1-4-1 姫嶋 建造 Yunosuke SUEOKA Kenzo HIMESHIMA Hiroshima University Kagamiyama

More information

1007.\1.ai

1007.\1.ai - 1 - B - 2 - e - 3 - F O f g e f - 4 - O O N N N N N N N N N N N N N N N N N N N N N N N F C - 5 - N N N N N N N N N N N N N N N N N N N N N N N F - 6 - D - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 -

More information

kiso2-03.key

kiso2-03.key 座席指定はありません Linux を起動して下さい 第3回 計算機基礎実習II 2018 のウェブページか ら 以下の課題に自力で取り組んで下さい 計算機基礎実習II 第2回の復習課題(rev02) 第3回の基本課題(base03) 第2回課題の回答例 ex02-2.c include int main { int l int v, s; /* 一辺の長さ */ /* 体積 v

More information

1 return main() { main main C 1 戻り値の型 関数名 引数 関数ブロックをあらわす中括弧 main() 関数の定義 int main(void){ printf("hello World!!\n"); return 0; 戻り値 1: main() 2.2 C main

1 return main() { main main C 1 戻り値の型 関数名 引数 関数ブロックをあらわす中括弧 main() 関数の定義 int main(void){ printf(hello World!!\n); return 0; 戻り値 1: main() 2.2 C main C 2007 5 29 C 1 11 2 2.1 main() 1 FORTRAN C main() main main() main() 1 return 1 1 return main() { main main C 1 戻り値の型 関数名 引数 関数ブロックをあらわす中括弧 main() 関数の定義 int main(void){ printf("hello World!!\n"); return

More information

1 1983 5 1985 10 1991 5 1994 4 1995 8 10 40 12 1996 3 1997 3 1998 3 10 1999 9 2000 11 12 2001 1 6 6 7 2002 12 12 2003 1 12 2004 1 5 8 3 12 2005 2 3 5

1 1983 5 1985 10 1991 5 1994 4 1995 8 10 40 12 1996 3 1997 3 1998 3 10 1999 9 2000 11 12 2001 1 6 6 7 2002 12 12 2003 1 12 2004 1 5 8 3 12 2005 2 3 5 14 12 eye 1 1983 5 1985 10 1991 5 1994 4 1995 8 10 40 12 1996 3 1997 3 1998 3 10 1999 9 2000 11 12 2001 1 6 6 7 2002 12 12 2003 1 12 2004 1 5 8 3 12 2005 2 3 5 9 2006 12 2007 8 8 2008 2 2009 6 8 8 11 5

More information

12 12 10 3 17 1 1 3 17 1 4,800 8 370 2,050 17:3022:00 L.O.20:30 6,800 10 370 3 1,650 17:3024:00 L.O.23:30 1,200 3,300 8 BAR BAR B&B WEB TEL 024-984-2130 MAP TEL TEL MAP MAP TEL MAP 1 TEL

More information

精神障害者保健福祉手帳用診断書(別紙様式第2号) 記載要領

精神障害者保健福祉手帳用診断書(別紙様式第2号) 記載要領 23 7 23 8 1 2 F04F06F07 2 F04 2 3 F04 F06 F06.3 F06.6 F06.7 F07 F07.0 F07.1 F07.2 3 21 12 2000 8 1 2001 1 2000 8 1 2 2 112 610 4 5 / 2 2 6 7 8 F04F06F07 2 F04 2 3 F04 F06 F06.3 F06.6 F06.7 F07 F07.0 F07.1

More information

1 P2 P P3P4 P5P8 P9P10 P11 P12

1 P2 P P3P4 P5P8 P9P10 P11 P12 1 P2 P14 2 3 4 5 1 P3P4 P5P8 P9P10 P11 P12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 & 11 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1! 3 2 3! 4 4 3 5 6 I 7 8 P7 P7I P5 9 P5! 10 4!! 11 5 03-5220-8520

More information

Taro10-名張1審無罪判決.PDF

Taro10-名張1審無罪判決.PDF -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -1- 39 12 23 36 4 11 36 47 15 5 13 14318-2-

More information

02_C-C++_osx.indd

02_C-C++_osx.indd C/C++ OpenMP* / 2 C/C++ OpenMP* OpenMP* 9.0 1... 2 2... 3 3OpenMP*... 5 3.1... 5 3.2 OpenMP*... 6 3.3 OpenMP*... 8 4OpenMP*... 9 4.1... 9 4.2 OpenMP*... 9 4.3 OpenMP*... 10 4.4... 10 5OpenMP*... 11 5.1

More information

立ち読みページ

立ち読みページ 3 3-1 3-2 3-3 3-4 3-5 3-6 163 3-1 3-1-1 Web 1 2 LATCH 3-1-2 1 GUI GUI 164 165 ON/OFF 2 3-1-3 1 ISO 924111 166 2 Web Web Web WebWeb Web 3 3-1-4 2 1 1 2 3 167 168 2 169 2 3 1 3 1 2 3 4 5 170 171 3-2 3-2-1

More information

.......p...{..P01-48(TF)

.......p...{..P01-48(TF) 1 2 3 5 6 7 8 9 10 Act Plan Check Act Do Plan Check Do 11 12 13 14 INPUT OUTPUT 16 17 18 19 20 21 22 23 24 25 26 27 30 33 32 33 34 35 36 37 36 37 38 33 40 41 42 43 44 45 46 47 48 49 50 51 1. 2. 3.

More information

スパコンに通じる並列プログラミングの基礎

スパコンに通じる並列プログラミングの基礎 2016.06.06 2016.06.06 1 / 60 2016.06.06 2 / 60 Windows, Mac Unix 0444-J 2016.06.06 3 / 60 Part I Unix GUI CUI: Unix, Windows, Mac OS Part II 0444-J 2016.06.06 4 / 60 ( : ) 6 6 ( ) 6 10 6 16 SX-ACE 6 17

More information

mahoro/2011autumn/crypto/

mahoro/2011autumn/crypto/ http://www.ss.u-tokai.ac.jp/ mahoro/2011autumn/crypto/ 1 1 2011.9.29, ( ) http://www.ss.u-tokai.ac.jp/ mahoro/2011autumn/crypto/ 1.1 1.1.1 DES MISTY AES 1.1.2 RSA ElGamal 2 1 1.2 1.2.1 1.2.2 1.3 Mathematica

More information

インテル® VTune™ パフォーマンス・アナライザー 9.1 Windows* 版

インテル® VTune™ パフォーマンス・アナライザー 9.1 Windows* 版 VTune 9.1 Windows* ................................. 3...................... 3.................................................. 3............................................ 4 :.........................4................................................

More information