Numerical Optimizer SIMPLE チュートリアル V20 株式会社 NTT データ数理システム 2018 年 1 月

Size: px
Start display at page:

Download "Numerical Optimizer SIMPLE チュートリアル V20 株式会社 NTT データ数理システム 2018 年 1 月"

Transcription

1 Numerical Optimizer SIMPLE チュートリアル V20 株式会社 NTT データ数理システム 2018 年 1 月

2 Windows Nuorium Visual Analytics Platform UNIX Linux

3 1 Numerical Optimizer GUI Nuorium Numerical Optimizer/ Numerical Optimizer/ Numerical Optimizer 1.1 x 0 3x + 2 x 0 3x + 2 x 3x + 2 x 0 2 x = 0

4 Windows Numerical Optimizer GUI Nuorium Windows MSI Solutions Nuorium 1 Numerical Optimizer 1 Windows7 MSI Solutions NUOPT Nuorium

5 1.2 3 Numerical Optimizer 3x + 2 x 0

6

7 X, Y / X 6t 4t Y 1t 6t / 12t 24t X, Y X 180 Y 160 / X, Y 5 x y X / Y / 180x + 160y /

8 6 2 6x + y 12 / 4x + 6y 24 / 0 x 5 X 0 y 5 Y // X Y / Variable x(name=" X "); Variable y(name=" Y "); // ( ) Objective cost(name=" ", type=minimize); cost = 180*x + 160*y; // 6*x + y >= 12; // / 4*x + 6*y >= 24; // / // 0 <= x <= 5; // X 0 <= y <= 5; // Y // solve(); // x.val.print(); y.val.print(); cost.val.print(); // X Y / Variable x(name=" X "); Variable y(name=" Y ");

9 2.1 7 name="..." name="..." "//" // ( ) Objective cost(name=" ", type=minimize); name="..." name="..." type=minimize type=maximize cost = 180*x + 160*y; = * + exp(), sin()... // 6*x + y >= 12; // / 4*x + 6*y >= 24; // / >= SIMPLE >= <= == = // 0 <= x <= 5; // X 0 <= y <= 5; // Y x, y

10 8 2 // solve(); solve() solve() // x.val.print(); y.val.print(); cost.val.print(); solve() 3 [Expand Constraints and Objectives] sample.smp:7:info: (1/5) name=" " sample.smp:10:info: (2/5) name="" sample.smp:11:info: (3/5) name="" sample.smp:14:info: (4/5) name="" sample.smp:15:info: (5/5) name="" [About Numerical Optimizer] MSI Numerical Optimizer xx.x.x (NLP/LP/IP/SDP module) <with META-HEURISTICS engine "wcsp"/"rcpsp"> <with GLOBAL-OPTIMIZATION add-on "global"> <with DERIVATIVE-FREE-OPTIMIZATION add-on "DFO"> <with Netlib BLAS>, Copyright (C) 1991 NTT DATA Mathematical Systems Inc. [Problem and Algorithm] PROBLEM_NAME sample NUMBER_OF_VARIABLES 2 NUMBER_OF_FUNCTIONS 3 PROBLEM_TYPE MINIMIZATION METHOD HIGHER_ORDER

11 2.2 9 [Progress] <preprocess begin>...<preprocess end> <iteration begin> res=4.0e e-005 <iteration end> 1.4e-007 [Result] STATUS OPTIMAL VALUE_OF_OBJECTIVE ITERATION_COUNT 6 FUNC_EVAL_COUNT 9 FACTORIZATION_COUNT 7 RESIDUAL e-007 ELAPSED_TIME(sec.) 0.20 X =1.5 Y =3 =750 = name="..." 2.2 costx x + costy y / costx costy X / Y / costx, costy X, Y / cost = 180*x + 160*y;

12 10 2 Parameter costx(name=" X "); Parameter costy(name=" Y "); cost = costx*x + costy*y; Parameter name="...".dat " X " = 180; " Y " = 160; = name="..." ; "..." 3 X =1.5 Y =3 =750 Parameter " X " = 100; " Y " = 170; X =5 Y = =

13 x 5 X 0 y 5 Y x, y x 0, x 1 OilField = {0, 1} x i, i OilField i / costx costy 0 / 1 / costx x 0 + costy x 1 / 6x 0 + x 1 12 / 4x 0 + 6x 1 24 / 0 x i 5, i OilField i // Set OilField(name=" "); OilField = "0 1"; Element i(set=oilfield); // i / Variable x(name=" ", index=i);

14 12 2 // / Parameter costx(name=" X "); Parameter costy(name=" Y "); // / ( ) Objective cost(name=" ", type=minimize); cost = costx*x[0] + costy*x[1]; // 6*x[0] + x[1] >= 12; 4*x[0] + 6*x[1] >= 24; // // // i 0 <= x[i] <= 5; // solve(); // x[i].val.print(); cost.val.print(); Set OilField(name=" "); name="..." name="..." OilField = "0 1"; {0, 1} 0, 1 Element i(set=oilfield); OilField i set=...

15 Variable x(name=" ", index=i); index=i cost = costx*x[0] + costy*x[1]; x[ ] // 6*x[0] + x[1] >= 12; 4*x[0] + 6*x[1] >= 24; x, y x[0], x[1] // 0 <= x[i] <= 5; i i OilField // x[i].val.print(); i i OilField x[i] x[i].val.print() [0]=1.5 [1]=3 OilField x[i] costx, costy i costx i, i OilField i / costx 0, costx 1 costx, costy

16 14 2 Parameter costx(name=" X "); Parameter costy(name=" Y "); cost = costx*x[0] + costy*x[1]; Parameter costx(name=" ", index=i); cost = costx[0]*x[0] + costx[1]*x[1]; index=i " " = [0] 180 [1] 160; [ ] [ ]... 3 [0]=1.5 [1]=3 =750 0, 1 0, 1 OilField = "0 1"; Product = {, }

17 norma j, j Product j / 6*x[0] + x[1] >= 12; 4*x[0] + 6*x[1] >= 24; Set Product(name=" "); Element j(set=product); Parameter norma(name=" ", index=j); 6*x[0] + x[1] >= norma[" "]; 4*x[0] + 6*x[1] >= norma[" "]; j "..." " " = [0] 180 [1] 160; " " = [" "] 12 [" "] 24; " " " " SIMPLE OilField = {0, 1} Product = {, } costx i, i OilField norma j, j Product i / j / x i, i OilField i /

18 16 2 costx 0 x 0 + costx 1 x 1 / 6x 0 + x 1 norma / 4x 0 + 6x 1 norma / 0 x i 5, i OilField i // Set OilField(name=" "); Element i(set=oilfield); // Set Product(name=" "); Element j(set=product); // i / Parameter costx(name=" ", index=i); // j / Parameter norma(name=" ", index=j); // i / Variable x(name=" ", index=i); // / Objective cost(name=" ", type=minimize); cost = costx[0]*x[0]+costx[1]*x[1]; // 6*x[0] + x[1] >= norma[" "]; // / 4*x[0] + 6*x[1] >= norma[" "]; // / // i 0 <= x[i] <= 5; //

19 solve(); // x[i].val.print(); cost.val.print(); 2.4 cost = costx[0]*x[0] + costx[1]*x[1]; cost = costx i x i i cost = sum(costx[i]*x[i], i); sum() sum(, ) sum() 6*x[0] + x[1] >= norma[" "]; 4*x[0] + 6*x[1] >= norma[" "]; prodx i, j prodx i, j x i norma j, j Product i OilField j / prodx i, j, i OilField, j Product norma j, j Product i j / j /

20 18 2 Parameter prodx(name=" ", index=(i,j)); sum(prodx[i,j]*x[i], i) >= norma[j]; index=(i,j,..) sum() i i, j sum(,(i,j)) " " = [0] 180 [1] 160; " " = [" "] 12 [" "] 24; " " = [0, " "] 6 [1, " "] 1 [0, " "] 4 [1, " "] 6 ; OilField = {0, 1} Product = {, } costx i, i OilField norma j, j Product prodx i, j, i OilField, j Product i / j / i j / x i, i OilField i / costx i x i i OilField / prodx i, j x i norma j, j Product i OilField j /

21 x i 5, i OilField i // Set OilField(name=" "); Element i(set=oilfield); // Set Product(name=" "); Element j(set=product); // i / Parameter costx(name=" ", index=i); // j / Parameter norma(name=" ", index=j); // i j / Parameter prodx(name=" ", index=(i,j)); // i / Variable x(name=" ", index=i); // / Objective cost(name=" ", type=minimize); cost = sum(costx[i]*x[i], i); // j / sum(prodx[i,j]*x[i], i) >= norma[j]; // i 0 <= x[i] <= 5; // solve(); //

22 20 2 x[i].val.print(); cost.val.print(); 2.5 /, / / prod j = prodx i, j x i, j Product i OilField j / Expression prod(name=" ", index=j); // prod[j] = sum(prodx[i,j]*x[i], i); // Expression name, index Variable name index prod[j] =... Expression sum(prodx[i,j]*x[i], i) >= norma[j]; prod[j] prod[j] prod[j] >= norma[j]; prod[j] prod[j].val.print(); / [ ]=12 [ ]=24

23 Variable x(name=" ", index=i); IntegerVariable x(name=" ", index=i); IntegerVariable solve() [ ]=15 [ ]=26 [0]=2 [1]=3 = IntegerVariable 2.7 print() simple_printf() simple_printf() C++ C++ C++ simple_printf() print() simple_ printf() x[i].val.print();

24 22 2 simple_printf(" %d = %d\n", i, x[i]); 0 = 2 1 = 3 simple_printf() simple_printf(, 1, 2,...) C++ printf() 2.8 showsystem() showsystem() showsystem() solve() showsystem(); solve(); showsystem() 1-1 (sample.smp:26): 6* [0]+ [1] >= (sample.smp:26): 4* [0]+6* [1] >= (sample.smp:29): 0 <= [0] <= (sample.smp:29): 0 <= [1] <= 5 objective (sample.smp:23 name=" "): 180* [0]+160* [1] (minimize) 1-1, 1-2 prod[j] >= norma[j]; 2-1, <= x[i] <= 5; objective

25 cost = sum(costx[i]*x[i], i); showsystem() 2.9 / ; // name= " minimize maximize " name type name type <= >= < > = ==

26

27 3 Windows UNIX Linux Numerical Optimizer Windows UNIX Linux Numerical Optimizer/ Nuorium Windows Visual Analytics Platform Numerical Optimizer Windows 3.1 Windows Windows Numerical Optimizer/ Nuorium Visual Analytics Platform Nuorium 1. Windows MSI Solutions Nuorium 2 Nuorium foo.smp foo.smp // Set S, T; Element i(set=s), j(set=t); // Parameter c(name="c", index=j); Parameter cu(name="cu", index=i); 2 Windows7 MSI Solutions NUOPT Nuorium

28 26 3 Parameter cl(name="cl", index=i); Parameter A(name="A", index=(i,j)); Parameter bu(name="bu", index=j); Parameter bl(name="bl", index=j); // Variable x(name="x", index=j); // Objective f(name=" ", type=minimize); f = sum(c[j] * x[j], j); // cu[i] >= sum(a[i,j] * x[j], j) >= cl[i]; bu[j] >= x[j] >= bl[j]; 2. dat data.dat data.dat c = [1] -3 [2] 1; cu = [1] 1000 [2] 1000 [3] 1000; cl = [1] -1 [2] -2 [3] 2;

29 3.1 Windows 27 A = [1,1] -1 [1,2] 0.1 [2,1] -0.2 [2,2] -1 [3,1] 2 [3,2] 1 ; bu = [1] 1 [2] 2; bl = [1] 0 [2] 0; 3. foo.smp Numerical Optimizer Nuorium

30 Numerical Optimizer Windows MSI Solutions 3 NUOPT Windows Numerical Optimizer Nuorium Nuorium 4. foo.smp data.dat 3 Windows7 MSI Solutions NUOPT

31 3.1 Windows 29 foo.exe > mknuopt foo.smp > foo.exe data.dat Visual Analytics Platform 1. Visual Analytics Platform Numerical Optimizer Numerical Optimizer NUOPT OK

32 Nuorium Nuorium 4. Windows MSI Solutions VAP Visual Analytics Platform foo.smp data.dat

33 3.1 Windows

34 UNIX Linux 1..smp foo.smp

35 3.2 UNIX Linux 33 foo.smp // Set S, T; Element i(set=s), j(set=t); // Parameter c(name="c", index=j); Parameter cu(name="cu", index=i); Parameter cl(name="cl", index=i); Parameter A(name="A", index=(i,j)); Parameter bu(name="bu", index=j); Parameter bl(name="bl", index=j); // Variable x(name="x", index=j); // Objective f(name=" ", type=minimize); f = sum(c[j] * x[j], j); // cu[i] >= sum(a[i,j] * x[j], j) >= cl[i]; bu[j] >= x[j] >= bl[j]; 2..dat data.dat data.dat c = [1] -3 [2] 1; cu = [1] 1000 [2] 1000 [3] 1000; cl = [1] -1 [2] -2 [3] 2; A = [1,1] -1 [1,2] 0.1 [2,1] -0.2 [2,2] -1 [3,1] 2 [3,2] 1 ;

36 34 3 bu = [1] 1 [2] 2; bl = [1] 0 [2] 0; 3. foo.smp data.dat foo prompt% mknuopt foo.smp prompt%./foo data.dat [List of Data Files] <reading data_file: data.dat> [Expand Constraints and Objectives] foo.smp:18:info: (1/3) name=" " foo.smp:21:info: (2/3) name="" foo.smp:22:info: (3/3) name="" [About Numerical Optimizer] MSI Numerical Optimizer xx.x.x (NLP/LP/IP/SDP module) <with Netlib BLAS>, Copyright (C) 1991 NTT DATA Mathematical Systems Inc. [Problem and Algorithm] PROBLEM_NAME foo NUMBER_OF_VARIABLES 2 NUMBER_OF_FUNCTIONS 4 PROBLEM_TYPE MINIMIZATION METHOD HIGHER_ORDER [Progress] <preprocess begin>...<preprocess end> <iteration begin> res=1.4e e e e-08 <iteration end>

37 3.2 UNIX Linux 35 [Result] STATUS OPTIMAL VALUE_OF_OBJECTIVE -3 ITERATION_COUNT 12 FUNC_EVAL_COUNT 15 FACTORIZATION_COUNT 13 RESIDUAL e-08 ELAPSED_TIME(sec.) 0.03 SOLUTION_FILE foo.sol

38

39 <=... 7, 23 >= == D dat... 10, 28, 30, 33, 34 E Expression I index...13, 14, 18, 20 IntegerVariable M minimize... 7, 23 N name...7, 9, 10, 12, 20, 23 Numerical Optimizer...1 3, 25, 27 Nuorium... 1, 2, 25, 28, 30 P Parameter print... 13, 21, 22 S showsystem...22, 23 SIMPLE... 1, 6 9, 11 15, 17, 18, 20, 21, 23, 25, 32 solve... 8, 22 sum...17, 18 T type... 7, 23 V Visual Analytics Platform W Windows... 2, , , 7, , 18, , 3,

40 38...7, 13, 15, 17, 18, 22, , 3, 6, 11, , 17, 18, 20, 22, , 17, 18, 22, , 14, 15, 18, 28, 30, 33, , 5 7, 9 15, 18, , 3, 5, 7, 9 12, 15, 16, 18, 22, , 8 11, 14, 22, 23, 25, 26, 28,

1 1 2 3 3 5 3.1 1...................................... 5 3.1.1........................................ 5 3.1.2 SIMPLE...............................

1 1 2 3 3 5 3.1 1...................................... 5 3.1.1........................................ 5 3.1.2 SIMPLE............................... Numerical Optimizer SIMPLE/Excel 連 係 マニュアル V18 株 式 会 社 NTTデータ 数 理 システム 2016 年 3 月 1 1 2 3 3 5 3.1 1...................................... 5 3.1.1........................................ 5 3.1.2 SIMPLE...............................

More information

PYNUOPT マニュアル

PYNUOPT マニュアル PYNUOPT マニュアル V1.2 株式会社 NTT データ数理システム 2018 年 1 月 2 目次 1. はじめに... 3 1.1 サポートプラットフォーム... 3 1.2 インストール... 3 1.3 アンインストール... 8 1.4 簡単なサンプル (LP)... 9 1.5 簡単なサンプル (QP)... 13 2. PYNUOPT 詳細... 15 2.1 solvelp,solveqp...

More information

f(x) x S (optimal solution) f(x ) (optimal value) f(x) (1) 3 GLPK glpsol -m -d -m glpsol -h -m -d -o -y --simplex ( ) --interior --min --max --check -

f(x) x S (optimal solution) f(x ) (optimal value) f(x) (1) 3 GLPK glpsol -m -d -m glpsol -h -m -d -o -y --simplex ( ) --interior --min --max --check - GLPK by GLPK http://mukun mmg.at.infoseek.co.jp/mmg/glpk/ 17 7 5 : update 1 GLPK GNU Linear Programming Kit GNU LP/MIP ILOG AMPL(A Mathematical Programming Language) 1. 2. 3. 2 (optimization problem) X

More information

目次 1. はじめに Numerical Optimizer について V19 の新機能紹介 Nuorium をブラッシュアップ 生まれ変わった Excel アドイン 性能アップした分枝限

目次 1. はじめに Numerical Optimizer について V19 の新機能紹介 Nuorium をブラッシュアップ 生まれ変わった Excel アドイン 性能アップした分枝限 Numerical Optimizer (Windows 版 ) V19 インストールガイド インストール前にご確認ください 2017 年 6 月更新 1. Numerical Optimizer は Visual Analtyics Platform(VAP) 上で動作いたします VAP は VMStudio7.0.X およびそれ以前のバージョンと同時にご利用になれません そのため VMStudio7.0.X

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

106 4 4.1 1 25.1 25.4 20.4 17.9 21.2 23.1 26.2 1 24 12 14 18 36 42 24 10 5 15 120 30 15 20 10 25 35 20 18 30 12 4.1 7 min. z = 602.5x 1 + 305.0x 2 + 2

106 4 4.1 1 25.1 25.4 20.4 17.9 21.2 23.1 26.2 1 24 12 14 18 36 42 24 10 5 15 120 30 15 20 10 25 35 20 18 30 12 4.1 7 min. z = 602.5x 1 + 305.0x 2 + 2 105 4 0 1? 1 LP 0 1 4.1 4.1.1 (intger programming problem) 1 0.5 x 1 = 447.7 448 / / 2 1.1.2 1. 2. 1000 3. 40 4. 20 106 4 4.1 1 25.1 25.4 20.4 17.9 21.2 23.1 26.2 1 24 12 14 18 36 42 24 10 5 15 120 30

More information

Numerical Optimizer SIMPLE 外部接続マニュアル V18 株式会社 NTT データ数理システム 2016 年 3 月 1 1 1.1................................... 3 1.2..................................... 3 1.3.................................. 4 1.4......

More information

Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows

Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows Systemwalker IT Service Management Systemwalker Centric Manager IT Service

More information

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that use microcontrollers (MCUs)

More information

Copyright 2009, SofTek Systems, Inc. All rights reserved.

Copyright 2009, SofTek Systems, Inc. All rights reserved. PGI Visual Fortran Release 9.0 SofTek Copyright 2009, SofTek Systems, Inc. All rights reserved. \\\ \\ \\\ \\ \\ SofTek Systems, Inc \ SofTek Systems, Inc SofTek Systems, Inc SofTek Systems, Inc SofTek

More information

P01_表紙

P01_表紙 INDEX MEDIA DATA 2017 2 MEDIA DATA 2017 3 4.9 6.1 3.4 3.9 11.7 11.4 11.5 10.9 7.7 4.9 5.7 6.5 4.4 3.9 2.4 3.3 MEDIA DATA 2017 4 70.6 69.2 67.3 63.7 11.6 8.9 10.4 6.9 16.6 15.6 15.1 12.7 9.7 8.6 9.0 14.2

More information

1

1 1 2 P23 3 ( ) 4 NTT ( ) 4 83% 26 4 1 5 () () () () 6 ( ) () (AMFM) () 7 8 (), () () 6 ( ) 9 (),( ) 10 11 () 171 12 13 () 6 9 14 10 15 20 30 25 30 35 40 45 50 60 50 15 ( ) 16 () ) 17 () 40 /h 2 25 /h CL

More information

4D Draw

4D Draw 4D Draw Windows /Mac OS 4D Copyright 2007 4D SAS All rights reserved.. DR SET GLOBAL PREFERENCES vbind:=dr

More information

C言語によるアルゴリズムとデータ構造

C言語によるアルゴリズムとデータ構造 Algorithms and Data Structures in C 4 algorithm List - /* */ #include List - int main(void) { int a, b, c; int max; /* */ Ÿ 3Ÿ 2Ÿ 3 printf(""); printf(""); printf(""); scanf("%d", &a); scanf("%d",

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

(B2) 序章 FICO Xpressの基礎

(B2) 序章 FICO Xpressの基礎 Xpress の 基 礎 Xpress-Mosel Mosel Mosel Xpress-IVE Mosel http://www.msi-jp.com/xpress/learning/square/ Mosel 1. 2 3 2 4 40 160 1kg 3kg 200kg 20 5 chess.mos Mosel mos model Chess uses "mmxprs"! We shall use

More information

SCM (v0201) ( ) SCM 2 SCM 3 SCM SCM 2.1 SCM SCM SCM (1) MS-DOS (2) Microsoft(R) Windows 95 (C)Copyright Microsoft Corp

SCM (v0201) ( ) SCM 2 SCM 3 SCM SCM 2.1 SCM SCM SCM (1) MS-DOS (2) Microsoft(R) Windows 95 (C)Copyright Microsoft Corp SCM (v0201) ( ) 14 4 20 1 SCM 2 SCM 3 SCM 4 5 2 SCM 2.1 SCM SCM 2 1 2 SCM (1) MS-DOS (2) Microsoft(R) Windows 95 (C)Copyright Microsoft Corp 1981-1996. 1 (3) C:\WINDOWS>cd.. C:\>cd scm C:\SCM> C:\SCM>

More information

2 1/2 1/4 x 1 x 2 x 1, x 2 9 3x 1 + 2x 2 9 (1.1) 1/3 RDA 1 15 x /4 RDA 1 6 x /6 1 x 1 3 x 2 15 x (1.2) (1.3) (1.4) 1 2 (1.5) x 1

2 1/2 1/4 x 1 x 2 x 1, x 2 9 3x 1 + 2x 2 9 (1.1) 1/3 RDA 1 15 x /4 RDA 1 6 x /6 1 x 1 3 x 2 15 x (1.2) (1.3) (1.4) 1 2 (1.5) x 1 1 1 [1] 1.1 1.1. TS 9 1/3 RDA 1/4 RDA 1 1/2 1/4 50 65 3 2 1/15 RDA 2/15 RDA 1/6 RDA 1 1/6 1 1960 2 1/2 1/4 x 1 x 2 x 1, x 2 9 3x 1 + 2x 2 9 (1.1) 1/3 RDA 1 15 x 1 + 2 1/4 RDA 1 6 x 1 1 4 1 1/6 1 x 1 3

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

1 2 3 1 34060120 1,00040 2,000 1 5 10 50 2014B 305,000140 285 5 6 9 1,838 50 922 78 5025 50 10 1 2

1 2 3 1 34060120 1,00040 2,000 1 5 10 50 2014B 305,000140 285 5 6 9 1,838 50 922 78 5025 50 10 1 2 0120-563-506 / 9001800 9001700 123113 0120-860-777 163-8626 6-13-1 Tel.03-6742-3111 http://www.himawari-life.co.jp 1 2 3 1 34060120 1,00040 2,000 1 5 10 50 2014B 305,000140 285 5 6 9 1,838 50 922 78 5025

More information

橡MAIN.PDF

橡MAIN.PDF ILOS Integrated Logistics Optimization System Ver. 1:0) MELOS MEta Logistics network Optimization System Ver. 1:0) METEO MEta Tactical Enterprise resource Optimizer Ver. 1:0) NEOOS Network-type Economic

More information

2004

2004 2008 3 20 400 1 1,222 7 1 2 3 55.8 54.8 3 35.8 6 64.0 50.5 93.5 1 1,222 1 1,428 1 1,077 6 64.0 52.5 80.5 56.6 81.5 30.2 1 2 3 7 70.5 1 65.6 2 61.3 3 51.1 1 54.0 2 49.8 3 32.0 68.8 37.0 34.3 2008 3 2 93.5

More information

数理システム Numerical Optimizer(Windows版)インストールガイド

数理システム Numerical Optimizer(Windows版)インストールガイド 数 理 システム Numerical Optimizer (Windows 版 ) インストールガイド V18 株 式 会 社 NTT データ 数 理 システム Phone: 03-3358-1701 Fax: 03-3358-1727 Email: nuopt-support@msi.co.jp 2016/03 数 理 システム Numerical Optimizer V18(Windows 版

More information

001 No.3/12 1 1 2 3 4 5 6 4 8 13 27 33 39 001 No.3/12 4 001 No.3/12 5 001 No.3/12 6 001 No.3/12 7 001 8 No.3/12 001 No.3/12 9 001 10 No.3/12 001 No.3/12 11 Index 1 2 3 14 18 21 001 No.3/12 14 001 No.3/12

More information

2 3

2 3 Sample 2 3 4 5 6 7 8 9 3 18 24 32 34 40 45 55 63 70 77 82 96 118 121 123 131 143 149 158 167 173 187 192 204 217 224 231 17 285 290 292 1 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

More information

OR 2 Excel 2 3.. 4. OK. 1a: Excel2007 Office. Excel2003 1.. 1b. 2.. 3. OK. 2.,,. ツール アドイン 1b: Excel2003 :,.,.,.,,,.,,. 1. Excel2003.

OR 2 Excel 2 3.. 4. OK. 1a: Excel2007 Office. Excel2003 1.. 1b. 2.. 3. OK. 2.,,. ツール アドイン 1b: Excel2003 :,.,.,.,,,.,,. 1. Excel2003. OR 2 Excel 1 2 2.1 Excel.,. 2.2, x mathematical programming optimization problem, OR 1., 1 : f(x) h i (x) = 0, i = 1,..., m, g j (x) 0, j = 1,..., l, f(x) h i (x) = 0, i = 1,..., m, g j (x) 0, j = 1,...,

More information

untitled

untitled 1 5,000 Copyright 1 5,000...4...4...4...4...4...4...4...5...5...5...5...5...5...6...6...6...7...8...9...9...9...10...12...12...12...12...13...14...14...14...15...15...15 Copyright 1 5,000...16...16...16...16...17...18

More information

untitled

untitled Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright 3269 34 Copyright

More information

tomo_sp1

tomo_sp1 1....2 2....7...14 4....18 5....24 6....30 7....37 8....44...50 http://blog.garenet.com/tomo/ Copyright 2008 1. Copyright 2008 Copyright 2008 Copyright 2008 Copyright 2008 Copyright 2008 Copyright 2008

More information

untitled

untitled Copyright 1 Copyright 2 Copyright 3 Copyright 4 Copyright 5 Copyright 6 Copyright 7 Copyright 8 Copyright 9 Copyright 10 Copyright 11 Copyright 12 Copyright 13 Copyright 14 Copyright 15 Copyright 16 Copyright

More information

2. (297) 91 (365) (366) (371) (673) (938) (64) 85 (91) (631) (561) (302) (616) 63 (906) 68 (338) (714) (747) (169) (718) 62 (1,063) 67 (714) (169) (90

2. (297) 91 (365) (366) (371) (673) (938) (64) 85 (91) (631) (561) (302) (616) 63 (906) 68 (338) (714) (747) (169) (718) 62 (1,063) 67 (714) (169) (90 1. (297) 91 (365) (366) (938) (371) (673) 68 (338) (473) (864) (396) (939) (217) (616) 89 (371) (673) (91) (938) (297) 82 (302) (938) (631) (297) (616) (91) 76 (203) 81 (561) (263) (64) (644) (616) 65

More information

2. (1,009) 45 (368) (226) (133) (54) (260) 25 (446) 30 (774) (156) (805) (244) (652) 22 (128) (652) (157) (597) (805) (446) 30 (774) 35 (238) (581) (1

2. (1,009) 45 (368) (226) (133) (54) (260) 25 (446) 30 (774) (156) (805) (244) (652) 22 (128) (652) (157) (597) (805) (446) 30 (774) 35 (238) (581) (1 1. (189) 42 (133) (362) (93) (1,009) (260) (331) (189) (581) (238) (123) (140) (123) (362) (140) (238) (189) (581) (140) 41 (260) (93) (362) (1,009) (189) 21 (440) 26 (805) (597) (128) (446) (157) (362)

More information

Isogai, T., Building a dynamic correlation network for fat-tailed financial asset returns, Applied Network Science (7):-24, 206,

Isogai, T., Building a dynamic correlation network for fat-tailed financial asset returns, Applied Network Science (7):-24, 206, H28. (TMU) 206 8 29 / 34 2 3 4 5 6 Isogai, T., Building a dynamic correlation network for fat-tailed financial asset returns, Applied Network Science (7):-24, 206, http://link.springer.com/article/0.007/s409-06-0008-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

JFE.dvi

JFE.dvi ,, Department of Civil Engineering, Chuo University Kasuga 1-13-27, Bunkyo-ku, Tokyo 112 8551, JAPAN E-mail : atsu1005@kc.chuo-u.ac.jp E-mail : kawa@civil.chuo-u.ac.jp SATO KOGYO CO., LTD. 12-20, Nihonbashi-Honcho

More information

Fortran90/95 [9]! (1 ) " " 5 "Hello!"! 3. (line) Fortran Fortran 1 2 * (1 ) 132 ( ) * 2 ( Fortran ) Fortran ,6 (continuation line) 1

Fortran90/95 [9]! (1 )   5 Hello!! 3. (line) Fortran Fortran 1 2 * (1 ) 132 ( ) * 2 ( Fortran ) Fortran ,6 (continuation line) 1 Fortran90/95 2.1 Fortran 2-1 Hello! 1 program example2_01! end program 2! first test program ( ) 3 implicit none! 4 5 write(*,*) "Hello!"! write Hello! 6 7 stop! 8 end program example2_01 1 program 1!

More information

HARK Designer Documentation 0.5.0 HARK support team 2013 08 13 Contents 1 3 2 5 2.1.......................................... 5 2.2.............................................. 5 2.3 1: HARK Designer.................................

More information

Insert VERITAS™ White Paper Title Here

Insert VERITAS™ White Paper Title Here WHITE PAPER Microsoft SharePoint Portal Server 2003 VERITAS Backup Exec 10 for Windows Servers Microsoft SharePoint Portal Server ...3...3 SharePoint Portal Server...4...4...4...5 Backup Exec 10...5 Backup

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè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

ZEMAX Nagata DLL Volume-CAD c Copyright by RIKEN All Rights Reserved : : ( )

ZEMAX Nagata DLL Volume-CAD c Copyright by RIKEN All Rights Reserved : : ( ) ZEMAX Nagata DLL Volume-CAD c Copyright by RIKEN All Rights Reserved : 23 1 26 : ( ) ii 1. Nagata DLL 1 2. Nagata 1 3. VObj 2 3. 1............................................... 2 3. 2.................................................

More information

インテル(R) Visual Fortran Composer XE 2013 Windows版 入門ガイド

インテル(R) Visual Fortran Composer XE 2013 Windows版 入門ガイド Visual Fortran Composer XE 2013 Windows* エクセルソフト株式会社 www.xlsoft.com Rev. 1.1 (2012/12/10) Copyright 1998-2013 XLsoft Corporation. All Rights Reserved. 1 / 53 ... 3... 4... 4... 5 Visual Studio... 9...

More information

AtCoder Regular Contest 073 Editorial Kohei Morita(yosupo) A: Shiritori if python3 a, b, c = input().split() if a[len(a)-1] == b[0] and b[len(

AtCoder Regular Contest 073 Editorial Kohei Morita(yosupo) A: Shiritori if python3 a, b, c = input().split() if a[len(a)-1] == b[0] and b[len( AtCoder Regular Contest 073 Editorial Kohei Morita(yosupo) 29 4 29 A: Shiritori if python3 a, b, c = input().split() if a[len(a)-1] == b[0] and b[len(b)-1] == c[0]: print( YES ) else: print( NO ) 1 B:

More information

Digital Photo Professional Ver1.6(Windows)

Digital Photo Professional Ver1.6(Windows) Windows CT1-5193-000 CANON INC. 2005 J 1 2 3 4 s s s 1 1 s s s s s 1 1 a s s 1 s s 1 2 s a 1 s a 2 3 1 1 s a a 2 a 3 a s s 1 a a s a s s 1 s s 1 2 3 s 1 1 a 2 a 1 a s 2 3 1 1 s a 2 1 3 1 s a 2

More information

(CC Attribution) Lisp 2.1 (Gauche )

(CC Attribution) Lisp 2.1 (Gauche ) http://www.flickr.com/photos/dust/3603580129/ (CC Attribution) Lisp 2.1 (Gauche ) 2 2000EY-Office 3 4 Lisp 5 New York The lisps Sammy Tunis flickr lisp http://www.flickr.com/photos/dust/3603580129/ (CC

More information

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

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

More information

SET 5V RESET 1 1-1 SET SET SET SET SET SET 1-2 SET 1-3 SET SET 5V RESE SET AP MODE RT 5V 1-4 1 2 3 4 5 6 7 8 1 2 3 4 5 6 7 1 2 3 4 5 6 7 8 9 10 11 1 2 3 4 5 1 2 3 4 5 6 1 2 3 4 5

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

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

はじめての帳票作成

はじめての帳票作成 ucosminexus EUR 3020-7-532 OS Windows Vista Windows XP P-26D2-5684 ucosminexus EUR Designer 08-00 P-26D2-5784 ucosminexus EUR Developer 08-00 ISO9001 TickIT Microsoft Microsoft Corp. Microsoft Excel Microsoft

More information

ATM M.Shimura JCD02773@nifty.ne.jp 2003 12 13 JAPLA2003 1 queue ATM ATM queue 1.1 ATM No (Sec (Sec 1 13 37 60 26 28 99 1 25 40 39 143 202 14 88 190 27 1 184 2 170 37 40 130 317 15 121 72 28 48 115 3 101

More information

Release Notes for JMP book

Release Notes for JMP book 8.0.2 JMP, A Business Unit of SAS SAS Campus Drive Cary, NC 27513 SAS Institute Inc. 2009.JMP 8.0.2, Cary, NC: SAS Institute Inc. JMP 8.0.2 Copyright 2009, SAS Institute Inc., Cary, NC, USA All rights

More information

listings-ext

listings-ext (6) Python (2) ( ) ohsaki@kwansei.ac.jp 5 Python (2) 1 5.1 (statement)........................... 1 5.2 (scope)......................... 11 5.3 (subroutine).................... 14 5 Python (2) Python 5.1

More information

Solution Report

Solution Report CGE 3 GAMS * Date: 2018/07/24, Version 1.1 1 2 2 GAMSIDE 3 2.1 GAMS................................. 3 2.2 GAMSIDE................................ 3 2.3 GAMSIDE............................. 7 3 GAMS 11

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

スライド タイトルなし

スライド タイトルなし LightCycler Software Ver.3.5 : 200206 1/30 Windows NT Windows NT Ctrl + Alt + Delete LightCycler 3 Front Screen 2/30 LightCycler3 Front RUN Data Analysis LightCycler Data Analysis Edit Graphics Defaults

More information

グローバル タイトル変換テーブルの編集

グローバル タイトル変換テーブルの編集 19 CHAPTER SGM SGM GUI Global Title Translation GTT; 800 ID GTT Signaling Connection Control Part SCCP; Service Switching Point SSP; SubSystem Number SSN; GTT GTT CSV 16 SGM 3.3 3.1 4.0 4.1 4.2 GTT GTT

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

403-0702_‚Ofl¼

403-0702_‚Ofl¼ HP-UX HP System Insight Manager Whitepaper ..................................................................................2..............................................................2 SIM....................................................................................2.............................................................3................................................................................3

More information

,,.,,., II,,,.,,.,.,,,.,,,.,, II i

,,.,,., II,,,.,,.,.,,,.,,,.,, II i 12 Load Dispersion Methods in Thin Client Systems 1010405 2001 2 5 ,,.,,., II,,,.,,.,.,,,.,,,.,, II i Abstract Load Dispersion Methods in Thin Client Systems Noritaka TAKEUCHI Server Based Computing by

More information

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè11²ó 11 2013 6 19 11 (6/19) 6 (18:10-19:40) λ13 UNIX : 2 / 26 UNIX UNIX sort, head, tail, cat, cut diff, tee, grep, uniq, wc join, find, sed, awk, screen 3 / 26 sort sort : $ sort [options] [FILE...] options

More information

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

CLI Python モジュール

CLI Python モジュール Python プログラマビリティでは CLI を使用して IOS と対話できる Python モジュールを提供 しています Python CLI モジュールについて 1 ページ に関するその他の参考資料 4 ページ の機能情報 5 ページ Python CLI モジュールについて Python について Cisco IOS XE デバイスは ゲスト シェル内でインタラクティブおよび非インタラクティブ

More information

MultiPASS B-20 MultiPASS Suite 3.10使用説明書

MultiPASS B-20 MultiPASS Suite 3.10使用説明書 TM MultiPASS Suite Ver.3.10 for Windows ii iii Copyright 1999 Canon Inc. ALL RIGHTS RESERVED iv v vi vii viii ix x 1 2 3 4 5 6 7 8 9 xi xii 1 1 1-1 1 2 3 1-2 4 5 1 1-3 6 1-4 1 7 8 1-5 9 10 11 1-6 1 1-7

More information

Visual R Platform(VRP) とは Copyright 2018 NTT DATA Mathematical Systems Inc. 2

Visual R Platform(VRP) とは Copyright 2018 NTT DATA Mathematical Systems Inc. 2 R ベースの統計解析ツール Visual R Platform ~ オープンソースソフトウェアによる柔軟な解析 ~ 株式会社 NTT データ数理システムデータマイニング部関川拓也 Copyright 2018 NTT DATA Mathematical Systems Inc. Visual R Platform(VRP) とは Copyright 2018 NTT DATA Mathematical

More information

- 2 Copyright (C) 2006. All Rights Reserved.

- 2 Copyright (C) 2006. All Rights Reserved. - 2 Copyright (C) 2006. All Rights Reserved. 2-3 Copyright (C) 2006. All Rights Reserved. 70-4 Copyright (C) 2006. All Rights Reserved. ...1...3...7...8 1...9...14...16 2...18...20...21 3...22...23...23...24

More information

1 Web Web 1,,,, Web, Web : - i -

1 Web Web 1,,,, Web, Web : - i - 2015 Future University Hakodate 2015 System Information Science Practice Group Report Project Name Improvement of Environment for Learning Mathematics at FUN A ( ) Group Name GroupA (System) /Project No.

More information

Arcserve Backup r17.5 for Windows へのアップグレード (*1) r16 以前のバージョンの製品からは メンテナンス付き製品へのアップグレードが可能です メンテナンスには テクニカルサポート ( 平日 9:00~17:30) と製品アップグレードが含まれています 製品

Arcserve Backup r17.5 for Windows へのアップグレード (*1) r16 以前のバージョンの製品からは メンテナンス付き製品へのアップグレードが可能です メンテナンスには テクニカルサポート ( 平日 9:00~17:30) と製品アップグレードが含まれています 製品 へのアップグレード (*1) r16 以前のバージョンの製品からは メンテナンス付き製品へのアップグレードが可能です メンテナンスには テクニカルサポート ( 平日 9:00~17:30) と製品アップグレードが含まれています 製品のアップグレードは メンテナンス契約有効期間中に新バージョンがリリースされた場合 無償で対象製品の最新バージョンをご提供いたします ベース製品 アプリケーションエージェント製品

More information

2 I I / 61

2 I I / 61 2 I 2017.07.13 I 2 2017.07.13 1 / 61 I 2 2017.07.13 2 / 61 I 2 2017.07.13 3 / 61 7/13 2 7/20 I 7/27 II I 2 2017.07.13 4 / 61 π-computer gnuplot MobaXterm Wiki PC X11 DISPLAY I 2 2017.07.13 5 / 61 Mac 1.

More information

CPU Levels in the memory hierarchy Level 1 Level 2... Increasing distance from the CPU in access time Level n Size of the memory at each level 1: 2.2

CPU Levels in the memory hierarchy Level 1 Level 2... Increasing distance from the CPU in access time Level n Size of the memory at each level 1: 2.2 FFT 1 Fourier fast Fourier transform FFT FFT FFT 1 FFT FFT 2 Fourier 2.1 Fourier FFT Fourier discrete Fourier transform DFT DFT n 1 y k = j=0 x j ω jk n, 0 k n 1 (1) x j y k ω n = e 2πi/n i = 1 (1) n DFT

More information

/

/ / 1 UNIX AWK( ) 1.1 AWK AWK AWK A.V.Aho P.J.Weinberger B.W.Kernighan 3 UNIX AWK GNU AWK 1 1.2 1 mkdir ~/data data ( ) cd data 1 98 MS DOS FD 1 2 AWK 2.1 AWK 1 2 1 byte.data 1 byte.data 900 0 750 11 810

More information