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

Size: px
Start display at page:

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

Transcription

1 J.JSSAC (2005) Vol. 11, No. 3,4, pp 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 has no special functions as a programming language, it is equipped with many state-of-the-art packages, which makes Matlab competitive with its clones. In this paper, we focus on SCILAB, one of the clones of Matlab, which is developed by INRIA. Unlike other clones, the SCILAB has packages which are powerful enough to match those of Matlab. The SCILAB also has the function to define a new data type and its operators in the programming, which is similar to class in C++ programming language. In this paper, utilizing the function, we introduce power series arithmetic into the SCILAB, following the next three guidelines. 1. The power series are truncated at the total degree of variables. 2. Computations of the power series should be efficient. 3. The power series should be treated as if they are numbers. We developed the packages for controller designs which utilizes the power series arithmetic. With the packages, the H 2 optimal controller is obtained in the form of truncated power series of the design parameters. We present a design example of H 2 optimal controller with restrictions in its overshoot and undershoot (such design restrictions require trial and error process in a conventional controller design method). We also present a technique to detect numerical errors due to power series arithmetic. Mathematica Maple MATLAB kitamoto@yamaguchi-u.ac.jp c 2005 Japan Society for Symbolic and Algebraic Computation

2 , MATLAB LMI MATLAB Mathematica Maple Mathematica Control System Professional 2 LMI MATLAB Mathematica Maple MATLAB SCILAB SCILAB MATLAB Maple (Extended symbolic math toolbox) MATLAB Maple Extended symbolic math toolbox MATLAB Extended symbolic math toolbox Maple MATLAB 2 MATLAB 3 MATLAB SCILAB SCILAB 4 SCILAB 5 SCILAB MATLAB MATLAB CAD MATLAB 1 1

3 J.JSSAC Vol. 11, No. 3,4, Mathematica GNU Octave SCILAB MATLAB CAD LMI Simulab MATLAB 3 SCILAB 3.1 SCILAB INRIA MATLAB LAPACK MATLAB LMI MATLAB Simulab SCICOS MATLAB SCILAB SCILAB C++ C++ C 2 tlist tlist tlist([, 1,, n ], 1, 2,, n) tlist 1,, n 1 + 2i

4 , tlist([ complex, real, imag ], 1.0, 2.0) c c.real c.imag SCILAB SCILAB ps (i) (ii) (iii) (ii) ps α 0 + α 1 x + α 2 y + α 3 x 2 + α 4 xy + α 5 y 2 [α 0 α 1 α 2 α 3 α 4 α 5 ] x, y 3 p 1 = α 0 + α 1 x + α 2 y + α 3 x 2 + α 4 xy + α 5 y 2 p 2 = β 0 + β 1 x + β 2 y + β 3 x 2 + β 4 xy + β 5 y 2 p 1 + p 2 = α 0 + β 0 + (α 1 + β 1 )x + (α 2 + β 2 )y + (α 3 + β 3 )x 2 + (α 4 + β 4 )xy + (α 5 + β 5 )y 2 p 1 p 2 = α 0 β 0 + (α 0 β 1 + α 1 β 0 )x + (α 2 β 0 + α 0 β 2 )y + (α 0 β 3 + α 1 β 1 + α 3 β 0 )x 2 +(α 0 β 4 + α 1 β 2 + α 2 β 1 + α 4 β 0 )xy + (α 0 β 5 + α 2 β 2 + α 5 β 0 )y 2 (ii) (ii) ps_str

5 J.JSSAC Vol. 11, No. 3,4, ID ps ID " #! 1: id = ps_str([ x, y ],2); p1 = ps(id,[1,2,3,-1,2,-2]); p2 = ps(id,[3,4,-1,2,-1,1]); ps_str() ID x, y 2 ID id ps() ID 1 + 2x + 3y x 2 + 2xy 2y 2 p1 3 4x y + 2x 2 xy + y 2 p2 (iii) 3.3 SCILAB C++ SCILAB x y %<x >_a_<y > <x > <y > x y ps %ps_a_ps() p1, p2 ps p1+p2 %ps_a_ps(p1,p2) ps ID %ps_a_ps()

6 , function c = %ps_a_ps(a,b) if (a.id ~= b.id) then error("%ps_a_ps: ids are different!!"); end c=ps(id,a.coef+b.coef); endfunction ID ID ID %ps_a_ps() a s m r %ps_s_ps() %ps_m_ps() %ps_r_ps() ^ p == o 2 2: + a <> n - s < 1 * m > 2 / r <= 3 ^ p >= 4 t () e == o () i %ps_a_ps() p1 ps p1+1 %ps_a_s() s 1+p1 %ps_a_s() %s_a_ps() 4 SCILAB poly multpoly SCILAB psmat multpoly

7 J.JSSAC Vol. 11, No. 3,4, ps psmat ps multpoly multpoly(, ) x 2 p0 + p1*x + p2*x^2 f p0 p1 p2 ps f = multpoly( x,list(p0,p1,p2)) psmat psmat 2 2 p11 p12 m p21 p22 p11 p12 p21 p22 ps m = psmat(2,2,list(p11,p12,p21,p22)) multpoly multpoly_newton() 1: function xn = multpoly_newton(p,x0) 2: xn = x0; 3: tdeg = ps_str_data(p.coef(1).id).tdeg; 4: pd = p ; 5: i = 1; 6: while (i-1)<tdeg 7: i = 2*i; 8: xn = xn-p(xn)/pd(xn); 9: end; 10: endfunction p multpoly multpoly_newton() p x0 xn = x0 x0 xn x0 3 tdeg pd = p p pd multpoly p(xn) p xn ps ()

8 , SCILAB psmat multpoly psmat_inv() 1: function pn = psmat_inv(a) 2: if (a.row ~= a.col) then 3: error(" Matrix is not square!!"); 4: end 5: a0 = psmat_const(a); 6: e = eye(a0); 7: pn = inv(a0); 8: tdeg = ps_str_data(a(1,1).id).tdeg; 9: i = 1; 10: while (i-1)<tdeg 11: i = 2*i; 12: pn = pn+pn*(e-a*pn); 13: end; 14: endfunction 5 SCILAB Mathematica Ver CPU Pentium M 1.6GHz, 1GByte Windows Mathematica Mathematica 1 2

9 J.JSSAC Vol. 11, No. 3,4, x, y 2 α 0,0 + α 1,0 x + α 0,1 y + α 2,0 x 2 + α 1,1 xy + α 0,2 y 2 2 α 0,0 + α 0,1 y + α 0,2 y 2 + (α 1,0 + α 1,1 y + α 1,2 y 2 )x + (α 2,0 + α 2,1 y + α 2,2 y 2 )x 2 Mathematica t x i x i t t Mathematica Mathematica : Math Math Math Math Math. Mathematica ms Math. / Mathematica 3 Mathematica 1

10 , Mathematica : Math Math Math Math Mathematica < 1 > Mathematica 3 5 5: Math Math Math Math

11 J.JSSAC Vol. 11, No. 3,4, Mathematica Mathematica 4 Mathmatica 5 Mathematica SCILAB H 2 d dt x(t) = Ax(t) + Bu(t) y(t) = Cx(t) + Du(t) (1) x(t), u(t), y(t) A, B, C, D t > 0 x(t), y(t) u(t) x(t) x(t) u(t) = Kx(t) ( K x(t), y(t) K K H 2 H 2 0 { x(t) T Qx(t) + u(t) T Ru(t) } dt (2) Q, R x(t) T, u(t) T x(t), u(t) u(t) (1 u(t) (2 u(t) Riccati PA+A T P PBR 1 B T P+Q = 0 P P K = B T P K u(t) = Kx(t) u(t) 6.2

12 , psmat_inv(a) psmat a [2],[7] psmat_eig(a) psmat a [2] [6],[8],[12] psmat_lyap(a,b) a,b psmat Lyapunov a*x+x*a^t = b x psmat_are(a,b,c) a,b,c psmat Riccati a^t*p+p*a-p*b*p+c = 0 p [3],[5] psmat_expm(a) psmat a [9] step(a,b,c,d,t) a,b,c,d t A = a, B = b, C = c, D = d 1 impulse(a,b,c,d,t) a,b,c,d t A = a, B = b, C = c, D = d 1 eval_y(a,b,c,d,t) a,b,c,d t A = a, B = b, C = c, D = d 1 t =t y(t) psmat_eval_y(a,b,c,d,t) psmat a,b,c,d ps t A = a, B = b, C = c, D = d 1 t =t y(t) ps [9] psmat_peaktime(a,b,c,d,t) psmat a,b,c,d t A = a, B = b, C = c, D = d 1 y(t) y peak ps t y(t) = y peak t ps y(t) t t [9] A, B, C, D A = , B = 1 0, C = [ 1 2 ], D = 0 (3) H H 2 Q, R 2 u(t) = Kx(t) Q, R Q = , R = 1 (4)

13 J.JSSAC Vol. 11, No. 3,4, Riccati PA + A T P PBR 1 B T P + Q = 0 P P = (5) K = B T P = [ ] (6) u(t) = Kx(t) = 2.12x 1 (t) 1.29x 2 (t) (7) 6 6 y(t) y( ) = y(t) t : y(t) : t 6 t = 2 1 y(t) 10% (=1.1) 0 y(t) Q 10% (8) Q u(t) Q, R z 1, z 2 Q = (1 + z 1) (1 + z 2 ) 5, R = 1 (9) z 1, z 2 z 1 0.5, z (1 + z 1 ) 5, (1 + z 2 ) Q H 2

14 , z 1, z 2 H 2 z 1, z 2 SCILAB : 1, 3 1: a = [-1 1; -3 1]; 2: b = [-1 0] ; 3: c = [1 2]; 4: d = 0; Q, R 9 1: id = ps_str([ z1, z2 ],7); 2: q = psmat(id,zeros(2,2)); 3: q1 = ps(id); 4: q1(0) = [1 1]; 5: q(1,1) = q1*q1*q1*q1*q1; 6: q2 = ps(id); 7: q2(0) = [1 0 1]; 8: q(2,2) = q2*q2*q2*q2*q2; 9: r = [1]; z 1, z Q 2 Q psmat q1 (1 + z 1 ) [, z 1, z 2, ] [1 1] (1 + z 1 ) 5 Q (1,1) (1 + z 1 ) Q (2,2) (1 + z 2 ) 5 9 R 1 H 2 1: p = psmat_are(a,b*inv(r)*b,q); 2: k = b *p; 3: at = a-b*k; 1 Riccati A T P + PA + PBR 1 B T P Q = 0 P Q z 1, z 2 p psmat z 1, z 2

15 J.JSSAC Vol. 11, No. 3,4, K K psmat u(t) = Kx(t) 3 u(t) A (= A BK) at at psmat 1: [y1,t1]=psmat_peaktime(at,b,c,d,0.1); 2: [y2,t2]=psmat_peaktime(at,b,c,d,2); 6 z 1 = 0, z 2 = 0 t = 0.1, t = 2.0, t = 4 t = psmat z 1, z 2 t1 y1 t1 = *z *z *z1^ *z 1*z *z2^ *z1^ *z1^2*z *z1*z2^ *z2^ *z1^ *z1^3* z *z1^2*z2^ *z1*z2^ *z2^ *z1^ *z1^4*z *z1^3*z2^ *z1^2*z2^ *z1*z2^ *z2^ *z1^ *z1^5*z *z1^4*z2^ *z1^3*z2^ *z1^2*z2^ *z1*z2^ *z2^ *z1^ *z1^6*z *z1^5*z2^ *z1^4*z2^ *z1^3*z2^ *z1^2*z2^ *z1*z2^ *z2^7 y1 = *z *z *z1^ * z1*z *z2^ *z1^ *z1^2*z *z1*z2^ *z2^ *z1^ *z1^3 *z *z1^2*z2^ *z1*z2^ *z2^ *z1^ *z1^4*z *z1^3*z2^ *z1^2*z2^ *z1*z2^ *z2^ *z1 ^ *z1^5*z *z1^4*z2^ *z1^3*z2^ *z1^2*z2^ *z1*z2^ *z2^ *z1^ *z1^6*z *z1^5*z2^ *z1^4*z2^ *z1^3*z2^ *z1^2*z2^ *z1*z2^ *z2^7 y1, y2 y( ) = 1

16 , : tmp = c*psmat_inv(at)*b; 2: nf = -1/tmp(1); 3: ny1 = y1*nf; 4: ny2 = y2*nf; y( ) = C(A BK) 1 B 1/( C(A BK) 1 B) y1, y2 1 C(A BK) 1 B 2 1/(C(A BK) 1 B) nf 3-5 nf y1, y2 ny1, ny2 ny1 ny2-1 z 1 z 2 8, z 2 0 z z 1 8: z 1 9: ny1 ny2-1 ny1 < % ny2-1<0.1 10% 1 z 1 = 0.3, z 2 = 0.4 ny1= ny2= K 1: q = zeros(2,2); 2: q(1,1) = (1+0.3)^5; 3: q(2,2) = (1-0.4)^5; 4: p = riccati(a,b*b,q, c ); 5: k = b *p; 1-3 Q 4 Riccati riccati() SCILAB 5

17 J.JSSAC Vol. 11, No. 3,4, z z 1 1: K 7 y( ) = % 10% z 1 0.5, z Q (1 + z 1 ) 5, (1 + z 2 ) (1 + z 1 ) 5, (1 + z 2 ) Q (1 + z 1 ) 5, (1 + z 2 ) z 1, z 2 z 1, z (1 + z 1 ) 5, (1 + z 2 ) (2 + z 1 ) 5, (2 + z 2 ) 5 z 1 < 0.5, z 2 < (2 + z 1 ) 5, (2 + z 2 ) z 1 < 0.5, z 2 < 0.5 { (1 + z1 ) 5, (1 + z 2 ) 5}, { (2 + z 1 ) 5, (1 + z 2 ) 5}, { (1 + z 1 ) 5, (2 + z 2 ) 5}, { (2 + z 1 ) 5, (2 + z 2 ) 5} (z 1, z 2 ) = (0, 0) (z 1, z 1 ) = ( 0.5, 0.5), ( 0.5, 0.5), (0.5, 0.5), (0.5, 0.5) ny1,ny2 ny1,ny2

18 , (z 1, z 2 ) = ( 0.5, 0.5) 0.5 z 1, z 2 0 ny1, ny2 ny1, ny2 (z 1, z 2 ) = ( 0.5, 0.5), (0.5, 0.5), (0.5, 0.5) (z 1, z 2 ) = ( 0.5, 0.5) 30% 0.5 < z 1 < 0, 0 z ny1, ny (1 + z 1 ) 5 1, 1 (1 + z 2 ) ( z 1 ) 5, ( z 2 ) 5 z 1 < 0.25, z 2 < (1 + z 1 ) 5, (1 + z 2 ) SCILAB MATLAB SCILAB C++ SCILAB (a) (b) (c) SCILAB Mathematica Ver Mathematica 1/5 Riccati H 2

19 J.JSSAC Vol. 11, No. 3,4, [1] Scilab Group: Scilab, ftp://ftp.inria.fr/inria/scilab/contrib/scijapanese/intro-jp.pdf [2] Kitamoto, T.: Approximate eigenvalues, eigenvectors and inverse of a matrix with polynomial entries, Jpn. J. Indus. Appl. Math., 11(1), 1994, [3] :,, J78- A(4), 1995, [4] : H 2,, J81-A(2), 1998, [5] : Riccati,, J81-A(3), 1998, [6] :,, J81-A(4), 1998, [7],, J84-A(2), 2001, [8] Kitamoto, T.: On computation of approximate eigenvalues and eigenvectors, IEICE Trans. Fundamentals, E85-A(3), 2002, [9] Kitamoto, T.: Computation of the peak of time response in the form of formal power series, IEICE Trans. Fundamentals, E86-A(12), 2003, [10] Kung, H.T., Traub, J.F, All algebraci function can be computed fast, J. ACM, 25, 1978, [11] Lipson, J.D., Newton s method: A great algebraic algorithm, Proceedings of ACM Symposium on Symbolic and Algebraic Computations, 1976, [12] Yokoyama, K., Takeshima, T.: On Hensel construction of eigenvalues and eigenvectors of matrices with polynomial entries, Proceedings of the ISSAC 93, ACM PRESS, 1993,

<4D F736F F D B B83578B6594BB2D834A836F815B82D082C88C60202E646F63>

<4D F736F F D B B83578B6594BB2D834A836F815B82D082C88C60202E646F63> MATLAB/Simulink による現代制御入門 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/9241 このサンプルページの内容は, 初版 1 刷発行当時のものです. i MATLAB/Simulink MATLAB/Simulink 1. 1 2. 3. MATLAB/Simulink

More information

浜松医科大学紀要

浜松医科大学紀要 On the Statistical Bias Found in the Horse Racing Data (1) Akio NODA Mathematics Abstract: The purpose of the present paper is to report what type of statistical bias the author has found in the horse

More information

Bulletin of JSSAC(2014) Vol. 20, No. 2, pp (Received 2013/11/27 Revised 2014/3/27 Accepted 2014/5/26) It is known that some of number puzzles ca

Bulletin of JSSAC(2014) Vol. 20, No. 2, pp (Received 2013/11/27 Revised 2014/3/27 Accepted 2014/5/26) It is known that some of number puzzles ca Bulletin of JSSAC(2014) Vol. 20, No. 2, pp. 3-22 (Received 2013/11/27 Revised 2014/3/27 Accepted 2014/5/26) It is known that some of number puzzles can be solved by using Gröbner bases. In this paper,

More information

, : GUI Web Java 2.1 GUI GUI GUI 2 y = x y = x y = x

, : GUI Web Java 2.1 GUI GUI GUI 2 y = x y = x y = x J.JSSAC (2005) Vol. 11, No. 3,4, pp. 77-88 Noda2005 MathBlackBoard MathBlackBoard is a Java program based on the blackboard applet. We can use the blackboard applet with GUI operations. The blackboard

More information

II

II II 2016 7 21 computer-assisted proof 1 / 64 1. 2. 3. Siegfried M. Rump : [1] I,, 14:3 (2004), pp. 214 223. [2] II,, 14:4 (2004), pp. 346 359. 2 / 64 Risch 18 3 / 64 M n = 2 n 1 (n = 1, 2,... ) 2 2 1 1

More information

soturon.dvi

soturon.dvi 12 Exploration Method of Various Routes with Genetic Algorithm 1010369 2001 2 5 ( Genetic Algorithm: GA ) GA 2 3 Dijkstra Dijkstra i Abstract Exploration Method of Various Routes with Genetic Algorithm

More information

A Contrastive Study of Japanese and Korean by Analyzing Mistranslation from Japanese into Korean Yukitoshi YUTANI Japanese, Korean, contrastive study, mistranslation, Japanese-Korean dictionary It is already

More information

揃 24 1681 0 20 40 60 80 100 0 21 42 63 84 Lag [hour] Lag [day] 35

揃 24 1681 0 20 40 60 80 100 0 21 42 63 84 Lag [hour] Lag [day] 35 Forecasting Model for Electricity Consumption in Residential House Based on Time Series Analysis * ** *** Shuhei Kondo Nobayasi Masamori Shuichi Hokoi ( 2015 7 3 2015 12 11 ) After the experience of electric

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

( ) [1] [4] ( ) 2. [5] [6] Piano Tutor[7] [1], [2], [8], [9] Radiobaton[10] Two Finger Piano[11] Coloring-in Piano[12] ism[13] MIDI MIDI 1 Fig. 1 Syst

( ) [1] [4] ( ) 2. [5] [6] Piano Tutor[7] [1], [2], [8], [9] Radiobaton[10] Two Finger Piano[11] Coloring-in Piano[12] ism[13] MIDI MIDI 1 Fig. 1 Syst 情報処理学会インタラクション 2015 IPSJ Interaction 2015 15INT014 2015/3/7 1,a) 1,b) 1,c) Design and Implementation of a Piano Learning Support System Considering Motivation Fukuya Yuto 1,a) Takegawa Yoshinari 1,b) Yanagi

More information

17 Proposal of an Algorithm of Image Extraction and Research on Improvement of a Man-machine Interface of Food Intake Measuring System

17 Proposal of an Algorithm of Image Extraction and Research on Improvement of a Man-machine Interface of Food Intake Measuring System 1. (1) ( MMI ) 2. 3. MMI Personal Computer(PC) MMI PC 1 1 2 (%) (%) 100.0 95.2 100.0 80.1 2 % 31.3% 2 PC (3 ) (2) MMI 2 ( ),,,, 49,,p531-532,2005 ( ),,,,,2005,p66-p67,2005 17 Proposal of an Algorithm of

More information

& Vol.5 No (Oct. 2015) TV 1,2,a) , Augmented TV TV AR Augmented Reality 3DCG TV Estimation of TV Screen Position and Ro

& Vol.5 No (Oct. 2015) TV 1,2,a) , Augmented TV TV AR Augmented Reality 3DCG TV Estimation of TV Screen Position and Ro TV 1,2,a) 1 2 2015 1 26, 2015 5 21 Augmented TV TV AR Augmented Reality 3DCG TV Estimation of TV Screen Position and Rotation Using Mobile Device Hiroyuki Kawakita 1,2,a) Toshio Nakagawa 1 Makoto Sato

More information

THE INSTITUTE OF ELECTRONICS, INFORMATION AND COMMUNICATION ENGINEERS TECHNICAL REPORT OF IEICE.

THE INSTITUTE OF ELECTRONICS, INFORMATION AND COMMUNICATION ENGINEERS TECHNICAL REPORT OF IEICE. THE INSTITUTE OF ELECTRONICS, INFORMATION AND COMMUNICATION ENGINEERS TECHNICAL REPORT OF IEICE. E-mail: {ytamura,takai,tkato,tm}@vision.kuee.kyoto-u.ac.jp Abstract Current Wave Pattern Analysis for Anomaly

More information

123-099_Y05…X…`…‘…“†[…h…•

123-099_Y05…X…`…‘…“†[…h…• 1. 2 1993 2001 2 1 2 1 2 1 99 2009. 1982 250 251 1991 112 115 1988 75 2004 132 2006 73 3 100 3 4 1. 2. 3. 4. 5. 6.. 3.1 1991 2002 2004 3 4 101 2009 3 4 4 5 1 5 6 1 102 5 6 3.2 2 7 8 2 X Y Z Z X 103 2009

More information

21 Quantum calculator simulator based on reversible operation

21 Quantum calculator simulator based on reversible operation 21 Quantum calculator simulator based on reversible operation 1100366 2010 3 1 i Abstract Quantum calculator simulator based on reversible operation Ryota Yoshimura Quantum computation is the novel computational

More information

The 15th Game Programming Workshop 2010 Magic Bitboard Magic Bitboard Bitboard Magic Bitboard Bitboard Magic Bitboard Magic Bitboard Magic Bitbo

The 15th Game Programming Workshop 2010 Magic Bitboard Magic Bitboard Bitboard Magic Bitboard Bitboard Magic Bitboard Magic Bitboard Magic Bitbo Magic Bitboard Magic Bitboard Bitboard Magic Bitboard Bitboard Magic Bitboard 64 81 Magic Bitboard Magic Bitboard Bonanza Proposal and Implementation of Magic Bitboards in Shogi Issei Yamamoto, Shogo Takeuchi,

More information

2

2 2011 8 6 2011 5 7 [1] 1 2 i ii iii i 3 [2] 4 5 ii 6 7 iii 8 [3] 9 10 11 cf. Abstracts in English In terms of democracy, the patience and the kindness Tohoku people have shown will be dealt with as an exception.

More information

å‰Łçı—訋çfl»æ³Łã†¨ã…Łã‡£ã…œã…−ã……ã…†æŁ°, ㆚ㆮ2æ¬¡è©Łä¾¡å‹ƒå›²ã•† ㅋㅪㅜã…−ã……ã…†æŁ°å‹Šã†«ã‡‹ã‡‰é•£ã†®ç¢ºç”⁄訋箊

å‰Łçı—訋çfl»æ³Łã†¨ã…Łã‡£ã…œã…−ã……ã…†æŁ°,   ㆚ㆮ2æ¬¡è©Łä¾¡å‹ƒå›²ã•† ㅋㅪㅜã…−ã……ã…†æŁ°å‹Šã†«ã‡‹ã‡‰é•£ã†®ç¢ºç”⁄訋箊 , 2 August 28 (Fri), 2016 August 28 (Fri), 2016 1 / 64 Outline 1 2 3 2 4 2 5 6 August 28 (Fri), 2016 2 / 64 fibonacci Lucas 2 August 28 (Fri), 2016 3 / 64 Dynamic Programming R.Bellman Bellman Continuum

More information

1 3DCG [2] 3DCG CG 3DCG [3] 3DCG 3 3 API 2 3DCG 3 (1) Saito [4] (a) 1920x1080 (b) 1280x720 (c) 640x360 (d) 320x G-Buffer Decaudin[5] G-Buffer D

1 3DCG [2] 3DCG CG 3DCG [3] 3DCG 3 3 API 2 3DCG 3 (1) Saito [4] (a) 1920x1080 (b) 1280x720 (c) 640x360 (d) 320x G-Buffer Decaudin[5] G-Buffer D 3DCG 1) ( ) 2) 2) 1) 2) Real-Time Line Drawing Using Image Processing and Deforming Process Together in 3DCG Takeshi Okuya 1) Katsuaki Tanaka 2) Shigekazu Sakai 2) 1) Department of Intermedia Art and Science,

More information

Pari-gp /7/5 1 Pari-gp 3 pq

Pari-gp /7/5 1 Pari-gp 3 pq Pari-gp 3 2007/7/5 1 Pari-gp 3 pq 3 2007 7 5 Pari-gp 3 2007/7/5 2 1. pq 3 2. Pari-gp 3. p p 4. p Abel 5. 6. 7. Pari-gp 3 2007/7/5 3 pq 3 Pari-gp 3 2007/7/5 4 p q 1 (mod 9) p q 3 (3, 3) Abel 3 Pari-gp 3

More information

EQUIVALENT TRANSFORMATION TECHNIQUE FOR ISLANDING DETECTION METHODS OF SYNCHRONOUS GENERATOR -REACTIVE POWER PERTURBATION METHODS USING AVR OR SVC- Ju

EQUIVALENT TRANSFORMATION TECHNIQUE FOR ISLANDING DETECTION METHODS OF SYNCHRONOUS GENERATOR -REACTIVE POWER PERTURBATION METHODS USING AVR OR SVC- Ju EQUIVALENT TRANSFORMATION TECHNIQUE FOR ISLANDING DETECTION METHODS OF SYNCHRONOUS GENERATOR -REACTIVE POWER PERTURBATION METHODS USING AVR OR SVC- Jun Motohashi, Member, Takashi Ichinose, Member (Tokyo

More information

2 ( ) i

2 ( ) i 25 Study on Rating System in Multi-player Games with Imperfect Information 1165069 2014 2 28 2 ( ) i ii Abstract Study on Rating System in Multi-player Games with Imperfect Information Shigehiko MORITA

More information

kiyo5_1-masuzawa.indd

kiyo5_1-masuzawa.indd .pp. A Study on Wind Forecast using Self-Organizing Map FUJIMATSU Seiichiro, SUMI Yasuaki, UETA Takuya, KOBAYASHI Asuka, TSUKUTANI Takao, FUKUI Yutaka SOM SOM Elman SOM SOM Elman SOM Abstract : Now a small

More information

A Study on Throw Simulation for Baseball Pitching Machine with Rollers and Its Optimization Shinobu SAKAI*5, Yuichiro KITAGAWA, Ryo KANAI and Juhachi

A Study on Throw Simulation for Baseball Pitching Machine with Rollers and Its Optimization Shinobu SAKAI*5, Yuichiro KITAGAWA, Ryo KANAI and Juhachi A Study on Throw Simulation for Baseball Pitching Machine with Rollers and Its Optimization Shinobu SAKAI*5, Yuichiro KITAGAWA, Ryo KANAI and Juhachi ODA Department of Human and Mechanical Systems Engineering,

More information

Mimehand II[1] [2] 1 Suzuki [3] [3] [4] (1) (2) 1 [5] (3) 50 (4) 指文字, 3% (25 個 ) 漢字手話 + 指文字, 10% (80 個 ) 漢字手話, 43% (357 個 ) 地名 漢字手話 + 指文字, 21

Mimehand II[1] [2] 1 Suzuki [3] [3] [4] (1) (2) 1 [5] (3) 50 (4) 指文字, 3% (25 個 ) 漢字手話 + 指文字, 10% (80 個 ) 漢字手話, 43% (357 個 ) 地名 漢字手話 + 指文字, 21 1 1 1 1 1 1 1 2 transliteration Machine translation of proper names from Japanese to Japanese Sign Language Taro Miyazaki 1 Naoto Kato 1 Hiroyuki Kaneko 1 Seiki Inoue 1 Shuichi Umeda 1 Toshihiro Shimizu

More information

16_.....E...._.I.v2006

16_.....E...._.I.v2006 55 1 18 Bull. Nara Univ. Educ., Vol. 55, No.1 (Cult. & Soc.), 2006 165 2002 * 18 Collaboration Between a School Athletic Club and a Community Sports Club A Case Study of SOLESTRELLA NARA 2002 Rie TAKAMURA

More information

Title < 論文 > 公立学校における在日韓国 朝鮮人教育の位置に関する社会学的考察 : 大阪と京都における 民族学級 の事例から Author(s) 金, 兌恩 Citation 京都社会学年報 : KJS = Kyoto journal of so 14: 21-41 Issue Date 2006-12-25 URL http://hdl.handle.net/2433/192679 Right

More information

大学における原価計算教育の現状と課題

大学における原価計算教育の現状と課題 1 1.1 1.2 1.3 2 2.1 2.2 3 3.1 3.2 3.3 2014a 50 ABC Activity Based Costing LCC Lifecycle Costing MFCA Material Flow Cost Accounting 2 2 2016 9 1 2 3 2014b 2005 2014b 2000 1 2 1962 5 1 3 2 3 4 5 50 2012

More information

人文学部研究年報12号.indb

人文学部研究年報12号.indb 制御理論を用いた在庫管理モデルの一解析 * リードタイムが変動する場合 西平直史 1 [1, 2, 3, 4] [1] [2, 3, 4] 1 1 3 2 [2] = +w(k) d(k) (1) 2014 12 1 1 制御理論を用いた在庫管理モデルの一解析 西平 k w(k) d(k) L k u(k) (2) (1) 2 w(k) =u(k L) (2) = +u(k L) d(k) (3)

More information

ばらつき抑制のための確率最適制御

ばらつき抑制のための確率最適制御 ( ) http://wwwhayanuemnagoya-uacjp/ fujimoto/ 2011 3 9 11 ( ) 2011/03/09-11 1 / 46 Outline 1 2 3 4 5 ( ) 2011/03/09-11 2 / 46 Outline 1 2 3 4 5 ( ) 2011/03/09-11 3 / 46 (1/2) r + Controller - u Plant y

More information

Page 1 of 6 B (The World of Mathematics) November 20, 2006 Final Exam 2006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (10pts) (a

Page 1 of 6 B (The World of Mathematics) November 20, 2006 Final Exam 2006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (10pts) (a Page 1 of 6 B (The World of Mathematics) November 0, 006 Final Exam 006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (a) (Decide whether the following holds by completing the truth

More information

24 LED A visual programming environment for art work using a LED matrix

24 LED A visual programming environment for art work using a LED matrix 24 LED A visual programming environment for art work using a LED matrix 1130302 2013 3 1 LED,,,.,. Arduino. Arduino,,,., Arduino,.,, LED,., Arduino, LED, i Abstract A visual programming environment for

More information

,

, , The Big Change of Life Insurance Companies in Japan Hisayoshi TAKEDA Although the most important role of the life insurance system is to secure economic life of the insureds and their

More information

IPSJ SIG Technical Report Vol.2016-CE-137 No /12/ e β /α α β β / α A judgment method of difficulty of task for a learner using simple

IPSJ SIG Technical Report Vol.2016-CE-137 No /12/ e β /α α β β / α A judgment method of difficulty of task for a learner using simple 1 2 3 4 5 e β /α α β β / α A judgment method of difficulty of task for a learner using simple electroencephalograph Katsuyuki Umezawa 1 Takashi Ishida 2 Tomohiko Saito 3 Makoto Nakazawa 4 Shigeichi Hirasawa

More information

IPSJ SIG Technical Report Vol.2014-EIP-63 No /2/21 1,a) Wi-Fi Probe Request MAC MAC Probe Request MAC A dynamic ads control based on tra

IPSJ SIG Technical Report Vol.2014-EIP-63 No /2/21 1,a) Wi-Fi Probe Request MAC MAC Probe Request MAC A dynamic ads control based on tra 1,a) 1 1 2 1 Wi-Fi Probe Request MAC MAC Probe Request MAC A dynamic ads control based on traffic Abstract: The equipment with Wi-Fi communication function such as a smart phone which are send on a regular

More information

KII, Masanobu Vol.7 No Spring

KII, Masanobu Vol.7 No Spring KII, Masanobu 1 2 3 4 5 2 2.1 1945 60196075 19759019904 002 Vol.7 No.1 2004 Spring 1194560 1 1946 2 195328 3 4 1958 1960 2196075 5 6 7 8 1946 2 1972 1/23/4 1974 1968481973 1969 3197590 9 1980 1987 41990

More information

OS Windows Vista Windows XP PowerPoint2003 Word2003 (a Test No. OS 1 Windows Vista PPT2003 2 Windows Vista Word2003 3 Windows XP PPT2003 4 Windows XP

OS Windows Vista Windows XP PowerPoint2003 Word2003 (a Test No. OS 1 Windows Vista PPT2003 2 Windows Vista Word2003 3 Windows XP PPT2003 4 Windows XP C ommunication In embedded softwares, designing a test process that considers how to perform tests in an efficient way, has been an important problem in a whole development process. By the software test,

More information

A Feasibility Study of Direct-Mapping-Type Parallel Processing Method to Solve Linear Equations in Load Flow Calculations Hiroaki Inayoshi, Non-member

A Feasibility Study of Direct-Mapping-Type Parallel Processing Method to Solve Linear Equations in Load Flow Calculations Hiroaki Inayoshi, Non-member A Feasibility Study of Direct-Mapping-Type Parallel Processing Method to Solve Linear Equations in Load Flow Calculations Hiroaki Inayoshi, Non-member (University of Tsukuba), Yasuharu Ohsawa, Member (Kobe

More information

,,,,., C Java,,.,,.,., ,,.,, i

,,,,., C Java,,.,,.,., ,,.,, i 24 Development of the programming s learning tool for children be derived from maze 1130353 2013 3 1 ,,,,., C Java,,.,,.,., 1 6 1 2.,,.,, i Abstract Development of the programming s learning tool for children

More information

Web Web Web Web Web, i

Web Web Web Web Web, i 22 Web Research of a Web search support system based on individual sensitivity 1135117 2011 2 14 Web Web Web Web Web, i Abstract Research of a Web search support system based on individual sensitivity

More information

(1) i NGO ii (2) 112

(1) i NGO ii (2) 112 MEMOIRS OF SHONAN INSTITUTE OF TECHNOLOGY Vol. 41, No. 1, 2007 * * 2 * 3 * 4 * 5 * 6 * 7 * 8 Service Learning for Engineering Students Satsuki TASAKA*, Mitsutoshi ISHIMURA* 2, Hikaru MIZUTANI* 3, Naoyuki

More information

lagged behind social progress. During the wartime Chonaikai did cooperate with military activities. But it was not Chonaikai alone that cooperated. Al

lagged behind social progress. During the wartime Chonaikai did cooperate with military activities. But it was not Chonaikai alone that cooperated. Al The Development of Chonaikai in Tokyo before The Last War Hachiro Nakamura The urban neighborhood association in Japan called Chonaikai has been more often than not criticized by many social scientists.

More information

840 Geographical Review of Japan 73A-12 835-854 2000 The Mechanism of Household Reproduction in the Fishing Community on Oro Island Masakazu YAMAUCHI (Graduate Student, Tokyo University) This

More information

知能と情報, Vol.30, No.5, pp

知能と情報, Vol.30, No.5, pp 1, Adobe Illustrator Photoshop [1] [2] [3] Initital Values Assignment of Parameters Using Onomatopoieas for Interactive Design Tool Tsuyoshi NAKAMURA, Yuki SAWAMURA, Masayoshi KANOH, and Koji YAMADA Graduate

More information

(2003)

(2003) A discussion of research with questionnaires as psychological study through a comparison with clinical interview MOTONAGA, Takuro This study discusses underlying issues and viewpoints to administrate researches

More information

Abstract This paper concerns with a method of dynamic image cognition. Our image cognition method has two distinguished features. One is that the imag

Abstract This paper concerns with a method of dynamic image cognition. Our image cognition method has two distinguished features. One is that the imag 2004 RGB A STUDY OF RGB COLOR INFORMATION AND ITS APPLICATION 03R3237 Abstract This paper concerns with a method of dynamic image cognition. Our image cognition method has two distinguished features. One

More information

29 33 58 2005 1970 1997 2002, pp.3-8 2001 2002 2005b 2000 pp.137-146 2005c 7 34 Ma and Cartier eds. 2003 1970 1980 1979 2002 2000 1) 1980 1990 1991 1993 1995 1998 1994 1993 20031972 2003 2005 1997 2005a

More information

外国文学論集14号.indd

外国文学論集14号.indd 1876 1880 1 1930 1 1868 1930 1931 1945 1945 1989 1990 1868 1930 1930 1945 1945 1969 1970 1989 1990 1900 1901 1920 1946 1969 35 29 8.3 0.4 1908 1945 24 1951 1970 1931 1945 1951 5.6 27 0.8 1969 0.2 1910

More information

) ,

) , Vol. 2, 1 17, 2013 1986 A study about the development of the basic policy in the field of reform of China s sports system 1986 HaoWen Wu Abstract: This study focuses on the development of the basic policy

More information

Study on Throw Accuracy for Baseball Pitching Machine with Roller (Study of Seam of Ball and Roller) Shinobu SAKAI*5, Juhachi ODA, Kengo KAWATA and Yu

Study on Throw Accuracy for Baseball Pitching Machine with Roller (Study of Seam of Ball and Roller) Shinobu SAKAI*5, Juhachi ODA, Kengo KAWATA and Yu Study on Throw Accuracy for Baseball Pitching Machine with Roller (Study of Seam of Ball and Roller) Shinobu SAKAI*5, Juhachi ODA, Kengo KAWATA and Yuichiro KITAGAWA Department of Human and Mechanical

More information

IPSJ SIG Technical Report Vol.2009-HCI-134 No /7/17 1. RDB Wiki Wiki RDB SQL Wiki Wiki RDB Wiki RDB Wiki A Wiki System Enhanced by Visibl

IPSJ SIG Technical Report Vol.2009-HCI-134 No /7/17 1. RDB Wiki Wiki RDB SQL Wiki Wiki RDB Wiki RDB Wiki A Wiki System Enhanced by Visibl 1. RDB Wiki 1 1 2 Wiki RDB SQL Wiki Wiki RDB Wiki RDB Wiki A Wiki System Enhanced by Visible RDB Operations Toshiya Okumura, 1 Minoru Terada 1 and Kazutaka Maruyama 2 Although Wiki systems can easily be

More information

kut-paper-template.dvi

kut-paper-template.dvi 26 Discrimination of abnormal breath sound by using the features of breath sound 1150313 ,,,,,,,,,,,,, i Abstract Discrimination of abnormal breath sound by using the features of breath sound SATO Ryo

More information

fiš„v8.dvi

fiš„v8.dvi (2001) 49 2 333 343 Java Jasp 1 2 3 4 2001 4 13 2001 9 17 Java Jasp (JAva based Statistical Processor) Jasp Jasp. Java. 1. Jasp CPU 1 106 8569 4 6 7; fuji@ism.ac.jp 2 106 8569 4 6 7; nakanoj@ism.ac.jp

More information

1_26.dvi

1_26.dvi C3PV 1,a) 2,b) 2,c) 3,d) 1,e) 2012 4 20, 2012 10 10 C3PV C3PV C3PV 1 Java C3PV 45 38 84% Programming Process Visualization for Supporting Students in Programming Exercise Hiroshi Igaki 1,a) Shun Saito

More information

ABSTRACT The Social Function of Boys' Secondary Schools in Modern Japan: From the Perspectives of Repeating and Withdrawal TERASAKI, Satomi (Graduate School, Ochanomizu University) 1-4-29-13-212, Miyamaedaira,

More information

Proceedings of the 61st Annual Conference of the Institute of Systems, Control and Information Engineers (ISCIE), Kyoto, May 23-25, 2017 The Visual Se

Proceedings of the 61st Annual Conference of the Institute of Systems, Control and Information Engineers (ISCIE), Kyoto, May 23-25, 2017 The Visual Se The Visual Servo Control of Drone in Consideration of Dead Time,, Junpei Shirai and Takashi Yamaguchi and Kiyotsugu Takaba Ritsumeikan University Abstract Recently, the use of drones has been expected

More information

, IT.,.,..,.. i

, IT.,.,..,.. i 25 To construct the system that promote a interactive method as a knowledge acquisition 1140317 2014 2 28 , IT.,.,..,.. i Abstract To construct the system that promote a interactive method as a knowledge

More information

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

14 2 Scilab Scilab GUI インタグラフ プリタ描画各種ライブラリ (LAPACK, ODEPACK, ) SciNOTES ハードウェア (CPU, GPU) 21 Scilab SciNotes 呼び出し 3 変数ブラウザ 1 ファイルブラウザ 2 コンソール 4 コマンド履歴 13 2 Scilab Scilab Scilab 21 Scilab Scilab[4] INRIA C/C++, Fortran LAPACK Matlab Scilab Web http://wwwscilaborg/ 2016 4 552 Windows 10/8x MacOS X, Linux Scilab Octave Matlab (Matlab Toolbox) (Mathematica

More information

Y X X Y1 X 2644 Y1 Y2 Y1 Y3 Y1 Y1 Y1 Y2 Y3 Y2 Y3 Y1 Y1 Y2 Y3 Y1 Y2 Y3 Y1 X Lexis X Y X X2 X3 X2 Y2 Y1 Y1

Y X X Y1 X 2644 Y1 Y2 Y1 Y3 Y1 Y1 Y1 Y2 Y3 Y2 Y3 Y1 Y1 Y2 Y3 Y1 Y2 Y3 Y1 X Lexis X Y X X2 X3 X2 Y2 Y1 Y1 2 20 I II III 1 2 392 3 4 IV Makiko Noto / 3 3 1 1 5 52 1 2 2 2 3 9 11 5 31 1037 227 7 4 1 4 Y1 1 1 5 1965 2000 302 050 2012 autumn / No.393 051 2 5 Y1 9 9 4 X X Y1 X 2644 Y1 Y2 Y1 Y3 Y1 Y1 Y1 Y2 Y3 Y2

More information

早稲田大学現代政治経済研究所 ダブルトラック オークションの実験研究 宇都伸之早稲田大学上條良夫高知工科大学船木由喜彦早稲田大学 No.J1401 Working Paper Series Institute for Research in Contemporary Political and Ec

早稲田大学現代政治経済研究所 ダブルトラック オークションの実験研究 宇都伸之早稲田大学上條良夫高知工科大学船木由喜彦早稲田大学 No.J1401 Working Paper Series Institute for Research in Contemporary Political and Ec 早稲田大学現代政治経済研究所 ダブルトラック オークションの実験研究 宇都伸之早稲田大学上條良夫高知工科大学船木由喜彦早稲田大学 No.J1401 Working Paper Series Institute for Research in Contemporary Political and Economic Affairs Waseda University 169-8050 Tokyo,Japan

More information

elemmay09.pub

elemmay09.pub Elementary Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Number Challenge Time:

More information

h23w1.dvi

h23w1.dvi 24 I 24 2 8 10:00 12:30 1),. Do not open this problem booklet 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 SUMMARY Although the situation where sufficient food was not supplied for the victims occurred in the Great East Japan Earthquake, this is a serious problem at the time of catastrophic disasters like the

More information

II

II No. 19 January 19 2013 19 Regionalism at the 19 th National Assembly Elections Focusing on the Yeongnam and Honam Region Yasurou Mori As the biggest issue of contemporary politics at South Korea, there

More information

(1) (2) (1) (2) 2 3 {a n } a 2 + a 4 + a a n S n S n = n = S n

(1) (2) (1) (2) 2 3 {a n } a 2 + a 4 + a a n S n S n = n = S n . 99 () 0 0 0 () 0 00 0 350 300 () 5 0 () 3 {a n } a + a 4 + a 6 + + a 40 30 53 47 77 95 30 83 4 n S n S n = n = S n 303 9 k d 9 45 k =, d = 99 a d n a n d n a n = a + (n )d a n a n S n S n = n(a + a n

More information

untitled

untitled Bloomberg ARES Price Book-value Ratio J BA A * 201226 20 2241214 1 J 25 90 90 () 15 10090 10090 () 147 A A B B A A B B A A B ToSTNet 2 2-3 2 4-6 191 9 192 11 1 p16 H20.12 H20.11 H20.10 H20.3 H19.11

More information

95NBK-final.dvi

95NBK-final.dvi focus particle (scale) (scalar reading) The basic semantic function of `toritate'(designting)-particles in Japanese, which correspond to so-called `focus particles' in English, is to designate an object

More information

2 HI LO ZDD 2 ZDD 2 HI LO 2 ( ) HI (Zero-suppress ) Zero-suppress ZDD ZDD Zero-suppress 1 ZDD abc a HI b c b Zero-suppress b ZDD ZDD 5) ZDD F 1 F = a

2 HI LO ZDD 2 ZDD 2 HI LO 2 ( ) HI (Zero-suppress ) Zero-suppress ZDD ZDD Zero-suppress 1 ZDD abc a HI b c b Zero-suppress b ZDD ZDD 5) ZDD F 1 F = a ZDD 1, 2 1, 2 1, 2 2 2, 1 #P- Knuth ZDD (Zero-suppressed Binary Decision Diagram) 2 ZDD ZDD ZDD Knuth Knuth ZDD ZDD Path Enumeration Algorithms Using ZDD and Their Performance Evaluations Toshiki Saitoh,

More information

23 Fig. 2: hwmodulev2 3. Reconfigurable HPC 3.1 hw/sw hw/sw hw/sw FPGA PC FPGA PC FPGA HPC FPGA FPGA hw/sw hw/sw hw- Module FPGA hwmodule hw/sw FPGA h

23 Fig. 2: hwmodulev2 3. Reconfigurable HPC 3.1 hw/sw hw/sw hw/sw FPGA PC FPGA PC FPGA HPC FPGA FPGA hw/sw hw/sw hw- Module FPGA hwmodule hw/sw FPGA h 23 FPGA CUDA Performance Comparison of FPGA Array with CUDA on Poisson Equation (lijiang@sekine-lab.ei.tuat.ac.jp), (kazuki@sekine-lab.ei.tuat.ac.jp), (takahashi@sekine-lab.ei.tuat.ac.jp), (tamukoh@cc.tuat.ac.jp),

More information

Input image Initialize variables Loop for period of oscillation Update height map Make shade image Change property of image Output image Change time L

Input image Initialize variables Loop for period of oscillation Update height map Make shade image Change property of image Output image Change time L 1,a) 1,b) 1/f β Generation Method of Animation from Pictures with Natural Flicker Abstract: Some methods to create animation automatically from one picture have been proposed. There is a method that gives

More information

WASEDA RILAS JOURNAL

WASEDA RILAS JOURNAL 27 200 WASEDA RILAS JOURNAL NO. 1 (2013. 10) WASEDA RILAS JOURNAL 28 199 29 198 WASEDA RILAS JOURNAL 30 197 31 196 WASEDA RILAS JOURNAL 32 195 1 3 12 6 23 No 1 3 0 13 3 4 3 2 7 0 5 1 6 6 3 12 0 47 23 12

More information

JOURNAL OF THE JAPANESE ASSOCIATION FOR PETROLEUM TECHNOLOGY VOL. 66, NO. 6 (Nov., 2001) (Received August 10, 2001; accepted November 9, 2001) Alterna

JOURNAL OF THE JAPANESE ASSOCIATION FOR PETROLEUM TECHNOLOGY VOL. 66, NO. 6 (Nov., 2001) (Received August 10, 2001; accepted November 9, 2001) Alterna JOURNAL OF THE JAPANESE ASSOCIATION FOR PETROLEUM TECHNOLOGY VOL. 66, NO. 6 (Nov., 2001) (Received August 10, 2001; accepted November 9, 2001) Alternative approach using the Monte Carlo simulation to evaluate

More information

24 Region-Based Image Retrieval using Fuzzy Clustering

24 Region-Based Image Retrieval using Fuzzy Clustering 24 Region-Based Image Retrieval using Fuzzy Clustering 1130323 2013 3 9 Visual-key Image Retrieval(VKIR) k-means Fuzzy C-means 2 200 2 2 20 VKIR 5 18% 54% 7 30 Fuzzy C-means i Abstract Region-Based Image

More information

〈企業特集:検査機器・試薬・技術の新たな展開〉新規マイコプラズマ抗原検査キット—プロラスト®Myco

〈企業特集:検査機器・試薬・技術の新たな展開〉新規マイコプラズマ抗原検査キット—プロラスト®Myco New immunochromatographic assay kit for Mycoplasma pneumoniae infection 'PRORAST Myco' Shohei Ohshima, Yasushi Shimada, Atsuko Minagawa, Kazuyuki Sugiyama and Yumiko Hirayama Mycoplasma pneumoniae infection

More information

00.\...ec5

00.\...ec5 Yamagata Journal of Health Science, Vol. 6, 23 Kyoko SUGAWARA, Junko GOTO, Mutuko WATARAI Asako HIRATUKA, Reiko ICHIKAWA Recently in Japan, there has been a gradual decrease in the practice of community

More information

20 Method for Recognizing Expression Considering Fuzzy Based on Optical Flow

20 Method for Recognizing Expression Considering Fuzzy Based on Optical Flow 20 Method for Recognizing Expression Considering Fuzzy Based on Optical Flow 1115084 2009 3 5 3.,,,.., HCI(Human Computer Interaction),.,,.,,.,.,,..,. i Abstract Method for Recognizing Expression Considering

More information

5D1 SY0004/14/ SICE 1, 2 Dynamically Consistent Motion Design of Humanoid Robots even at the Limit of Kinematics Kenya TANAKA 1 and Tomo

5D1 SY0004/14/ SICE 1, 2 Dynamically Consistent Motion Design of Humanoid Robots even at the Limit of Kinematics Kenya TANAKA 1 and Tomo 5D1 SY4/14/-485 214 SICE 1, 2 Dynamically Consistent Motion Design of Humanoid Robots even at the Limit of Kinematics Kenya TANAKA 1 and Tomomichi SUGIHARA 2 1 School of Engineering, Osaka University 2-1

More information

1 2 4 5 9 10 12 3 6 11 13 14 0 8 7 15 Iteration 0 Iteration 1 1 Iteration 2 Iteration 3 N N N! N 1 MOPT(Merge Optimization) 3) MOPT 8192 2 16384 5 MOP

1 2 4 5 9 10 12 3 6 11 13 14 0 8 7 15 Iteration 0 Iteration 1 1 Iteration 2 Iteration 3 N N N! N 1 MOPT(Merge Optimization) 3) MOPT 8192 2 16384 5 MOP 10000 SFMOPT / / MOPT(Merge OPTimization) MOPT FMOPT(Fast MOPT) FMOPT SFMOPT(Subgrouping FMOPT) SFMOPT 2 8192 31 The Proposal and Evaluation of SFMOPT, a Task Mapping Method for 10000 Tasks Haruka Asano

More information

Fig. 3 Coordinate system and notation Fig. 1 The hydrodynamic force and wave measured system Fig. 2 Apparatus of model testing

Fig. 3 Coordinate system and notation Fig. 1 The hydrodynamic force and wave measured system Fig. 2 Apparatus of model testing The Hydrodynamic Force Acting on the Ship in a Following Sea (1 St Report) Summary by Yutaka Terao, Member Broaching phenomena are most likely to occur in a following sea to relative small and fast craft

More information

Bodenheimer, Thomas S., and Kevin Grumbach (1998) Understanding Health Policy: A Clinical Approach, 2nd ed. Appleton & Lange. The Present State of Managed Care and the Feasibility of its Application to

More information

CX-Checker CX-Checker (1)XPath (2)DOM (3) 3 XPath CX-Checker. MISRA-C 62%(79/127) SQMlint 76%(13/17) XPath CX-Checker 3. CX-Checker 4., MISRA-C CX- Ch

CX-Checker CX-Checker (1)XPath (2)DOM (3) 3 XPath CX-Checker. MISRA-C 62%(79/127) SQMlint 76%(13/17) XPath CX-Checker 3. CX-Checker 4., MISRA-C CX- Ch CX-Checker: C 1 1 2 3 4 5 1 CX-Checker CX-Checker XPath DOM 3 CX-Checker MISRA-C CX-Checker: A Customizable Coding Checker for C TOSHINORI OSUKA, 1 TAKASHI KOBAYASHI, 1 JUNICHI MASE, 2 NORITOSHI ATSUMI,

More information

DPA,, ShareLog 3) 4) 2.2 Strino Strino STRain-based user Interface with tacticle of elastic Natural ObjectsStrino 1 Strino ) PC Log-Log (2007 6)

DPA,, ShareLog 3) 4) 2.2 Strino Strino STRain-based user Interface with tacticle of elastic Natural ObjectsStrino 1 Strino ) PC Log-Log (2007 6) 1 2 1 3 Experimental Evaluation of Convenient Strain Measurement Using a Magnet for Digital Public Art Junghyun Kim, 1 Makoto Iida, 2 Takeshi Naemura 1 and Hiroyuki Ota 3 We present a basic technology

More information

[2] 2. [3 5] 3D [6 8] Morishima [9] N n 24 24FPS k k = 1, 2,..., N i i = 1, 2,..., n Algorithm 1 N io user-specified number of inbetween omis

[2] 2. [3 5] 3D [6 8] Morishima [9] N n 24 24FPS k k = 1, 2,..., N i i = 1, 2,..., n Algorithm 1 N io user-specified number of inbetween omis 1,a) 2 2 2 1 2 3 24 Motion Frame Omission for Cartoon-like Effects Abstract: Limited animation is a hand-drawn animation style that holds each drawing for two or three successive frames to make up 24 frames

More information

28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment

28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment 28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment 1170288 2017 2 28 Docker,.,,.,,.,,.,. Docker.,..,., Web, Web.,.,.,, CPU,,. i ., OS..,, OS, VirtualBox,.,

More information

4 8 6 1 1 4 8 2001, 3 2 Marshall [1890]1920, 240 19 1 2001 2008 1990 1997 2007 2 Marshall [1890]1920

4 8 6 1 1 4 8 2001, 3 2 Marshall [1890]1920, 240 19 1 2001 2008 1990 1997 2007 2 Marshall [1890]1920 8 2011. 3 199 213 D. H. D. H. 1877-1953 The Evolution of Industry 1911 1904 1908 1919 1922 45 1906 Industrial Combination 2009 20 4 8 6 1 1 4 8 2001, 3 2 Marshall [1890]1920, 240 19 1 2001 2008 1990 1997

More information

Sport and the Media: The Close Relationship between Sport and Broadcasting SUDO, Haruo1) Abstract This report tries to demonstrate the relationship be

Sport and the Media: The Close Relationship between Sport and Broadcasting SUDO, Haruo1) Abstract This report tries to demonstrate the relationship be Sport and the Media: The Close Relationship between Sport and Broadcasting SUDO, Haruo1) Abstract This report tries to demonstrate the relationship between broadcasting and sport (major sport and professional

More information

Tsuken Technical Information 1

Tsuken Technical Information 1 March 2004 Vol.6 Tsuken Technical Information 1 Since microprocessors (MPUs) first appeared in the 1970s, they have developed at a remarkable pace, and now found in a huge range of devices that we use

More information

IPSJ SIG Technical Report Vol.2009-BIO-17 No /5/26 DNA 1 1 DNA DNA DNA DNA Correcting read errors on DNA sequences determined by Pyrosequencing

IPSJ SIG Technical Report Vol.2009-BIO-17 No /5/26 DNA 1 1 DNA DNA DNA DNA Correcting read errors on DNA sequences determined by Pyrosequencing DNA 1 1 DNA DNA DNA DNA Correcting read errors on DNA sequences determined by Pyrosequencing Youhei Namiki 1 and Yutaka Akiyama 1 Pyrosequencing, one of the DNA sequencing technologies, allows us to determine

More information

Table 1. Assumed performance of a water electrol ysis plant. Fig. 1. Structure of a proposed power generation system utilizing waste heat from factori

Table 1. Assumed performance of a water electrol ysis plant. Fig. 1. Structure of a proposed power generation system utilizing waste heat from factori Proposal and Characteristics Evaluation of a Power Generation System Utilizing Waste Heat from Factories for Load Leveling Pyong Sik Pak, Member, Takashi Arima, Non-member (Osaka University) In this paper,

More information

特-3.indd

特-3.indd Development of Automation Technology for Precision Finishing Works Employing a Robot Arm There is demand for the automation of finishing processes that require technical skills in the manufacturing of

More information

2. Eades 1) Kamada-Kawai 7) Fruchterman 2) 6) ACE 8) HDE 9) Kruskal MDS 13) 11) Kruskal AGI Active Graph Interface 3) Kruskal 5) Kruskal 4) 3. Kruskal

2. Eades 1) Kamada-Kawai 7) Fruchterman 2) 6) ACE 8) HDE 9) Kruskal MDS 13) 11) Kruskal AGI Active Graph Interface 3) Kruskal 5) Kruskal 4) 3. Kruskal 1 2 3 A projection-based method for interactive 3D visualization of complex graphs Masanori Takami, 1 Hiroshi Hosobe 2 and Ken Wakita 3 Proposed is a new interaction technique to manipulate graph layouts

More information

SPSS

SPSS The aging of residents who moved suburban new town in young is progressing. However, such residents tend to consider the service life of their houses only in terms of the time they will be occupying it.

More information

A(6, 13) B(1, 1) 65 y C 2 A(2, 1) B( 3, 2) C 66 x + 2y 1 = 0 2 A(1, 1) B(3, 0) P 67 3 A(3, 3) B(1, 2) C(4, 0) (1) ABC G (2) 3 A B C P 6

A(6, 13) B(1, 1) 65 y C 2 A(2, 1) B( 3, 2) C 66 x + 2y 1 = 0 2 A(1, 1) B(3, 0) P 67 3 A(3, 3) B(1, 2) C(4, 0) (1) ABC G (2) 3 A B C P 6 1 1 1.1 64 A6, 1) B1, 1) 65 C A, 1) B, ) C 66 + 1 = 0 A1, 1) B, 0) P 67 A, ) B1, ) C4, 0) 1) ABC G ) A B C P 64 A 1, 1) B, ) AB AB = 1) + 1) A 1, 1) 1 B, ) 1 65 66 65 C0, k) 66 1 p, p) 1 1 A B AB A 67

More information

箱根の遊園地・観光鉄道創設を誘発した観光特化型“不動産ファンド”

箱根の遊園地・観光鉄道創設を誘発した観光特化型“不動産ファンド” Isao Ogawa / / 1 2 3 1 36.81.1 45 p743 8 20 15 29 3 p54 3 357 18 1 4 45 6 52 11 5 1 23 3 122 2011 spring / No.387 4 5 6 I M40 p439 p48 37 M37.1.1R 6 R 36 39 41 5 42 8 43 6 2 12 15 4 14 41 4 47 53 61 63

More information

2017 (413812)

2017 (413812) 2017 (413812) Deep Learning ( NN) 2012 Google ASIC(Application Specific Integrated Circuit: IC) 10 ASIC Deep Learning TPU(Tensor Processing Unit) NN 12 20 30 Abstract Multi-layered neural network(nn) has

More information

12) NP 2 MCI MCI 1 START Simple Triage And Rapid Treatment 3) START MCI c 2010 Information Processing Society of Japan

12) NP 2 MCI MCI 1 START Simple Triage And Rapid Treatment 3) START MCI c 2010 Information Processing Society of Japan 1 1, 2 1, 2 1 A Proposal of Ambulance Scheduling System Based on Electronic Triage Tag Teruhiro Mizumoto, 1 Weihua Sun, 1, 2 Keiichi Yasumoto 1, 2 and Minoru Ito 1 For effective life-saving in MCI (Mass

More information

I 1) 2) 51 (1976) 6.9 ha 9 (1934) 2km 15, (1955) 6 (1620)

I 1) 2) 51 (1976) 6.9 ha 9 (1934) 2km 15, (1955) 6 (1620) I 1) 2) 51 (1976) 6.9 ha 9 (1934) 2km 15,000 30 (1955) 6 (1620) 3 1 1 45 16 2003 50 (1975) 2 150 49 (1974) II (1) 3) 1 49 50 51 53 54 56 57 59 61 63 3 8 9 10 11 12 NHK 46 2 44 (1969) 2 40 50 240 60 (1985)

More information

橡自動車~1.PDF

橡自動車~1.PDF CIRJE-J-34 2000 10 Abstract In this paper, we examine the diversity of transaction patterns observed between a single pair of one automaker and one auto parts supplier in Japan. Assumed reasonably that

More information

1 [1, 2, 3, 4, 5, 8, 9, 10, 12, 15] The Boston Public Schools system, BPS (Deferred Acceptance system, DA) (Top Trading Cycles system, TTC) cf. [13] [

1 [1, 2, 3, 4, 5, 8, 9, 10, 12, 15] The Boston Public Schools system, BPS (Deferred Acceptance system, DA) (Top Trading Cycles system, TTC) cf. [13] [ Vol.2, No.x, April 2015, pp.xx-xx ISSN xxxx-xxxx 2015 4 30 2015 5 25 253-8550 1100 Tel 0467-53-2111( ) Fax 0467-54-3734 http://www.bunkyo.ac.jp/faculty/business/ 1 [1, 2, 3, 4, 5, 8, 9, 10, 12, 15] The

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