main.dvi

Size: px
Start display at page:

Download "main.dvi"

Transcription

1 1 F77 5 hmogi-2008f@kiban.civil.saitama-u.ac.jp 2013/5/13 1

2 2 f77... f77.exe f77.exe CDROM (CDROM D D: setupond E E: setupone 5 C:work\T66160\ >f77 menseki.f -o menseki f77(.exe) f77 f77(.exe) C:work\T66160\ >set set ALLUSERSPROFILE=C:\ProgramData APPDATA=C:\Users\hm\AppData\Roaming CommonProgramFiles=C:\Program Files\Common Files COMPUTERNAME=HM-PC LIBRARY_PATH=E:\lib LIBRARY_PATH Path=E:\bin Path 2

3 3 f77 No such file or directory f77.exe f77 menseki.f C: work T *.* menseki.f.txt.txt C:\work\T66160\ >f77 mensek.f -o menseki f77: mensek.f: No such file or directory mensek.f C:\work\T66160\ >f77 menseki.f -o menseki C:\work\T66160\ > 3

4 4 [A] too few arguments (starting with dummy argument [B] ) as of (1) for statement function reference at (2) (2) (statement function) [B] [A] fs(x,y,z)=x**2+y**2+z**2! 3 x=3.0 z=fs(x) 1 fs sample.f:6: z=fs(x) too few arguments (starting with dummy argument y ) as of (2) for statement f unction reference at (1) [A] too many arguments as of (2) for statement function reference at (1) (1) [A] (2) fs(x,y)=x**2+y**2! fs z=fs(1.0, 2.0, 3.0, 4.0) 4 fs sample.f:5: z=fs(1.0, 2.0, 3.0, 4.0) too many arguments as of (2) for statement function reference at (1).NOT. operator at (1) must operate on scalar subexpressions but the subexpression at (2) is [A] (1).NOT. (scalar) (2) [A] logical t(2)/.true.,.true./,a a=.not.t sample.f:5: a=.not.t 1 2.NOT. operator at (1) must operate on scalar subexpressions -- but the subexpres sion at (2) is an array 4

5 .NOT. operator at (1) must operate on subexpression of logical type, but the subexpression at (1) is not of logical type (1).NOT. (2) integer m/1/ logical a a=.not.t sample.f:6: a=.not.t 1 2.NOT. operator at (1) must operate on subexpression of logical type, but the sub expression at (2) is not of logical type Alternate return specifier at ( ) invalid within a function (Alternate return) Alternate return specifier at ( ) invalid within a main program unit (Alternate return) Arithmetic operator at ( ) must operate on two scalar (not array) subexpressions, two function invocations returning arithmetic scalars, or a combination of both but the subexpression at (1) is [A] (2) (1) [A] integer m(2)/1,2/,n/2/, k k=m+n sample.f:5: k=m+n 12 Arithmetic operator at (2) must operate on two scalar (not array) subexpressions, two function invocations returning arithmetic scalars, or a combination of bot h -- but the subexpression at (1) is an array Arithmetic operator at ( ) must operate on two subexpressions of arithmetic type, but neither subexpression at (1) or (2) is of arithmetic type 5

6 Arithmetic operator at (1) must operate on two subexpressions of arithmetic type, but the subexpression at (2) is not of arithmetic type (2) (1) character a integer n n=1+a a sample.f:5: n=1+a 12 Arithmetic operator at (1) must operate on two subexpressions of arithmetic type, but the subexpression at (2) is not of arithmetic type Array [A] at ( ) istoolargetohandle [A] real x(500000,500000) x x x(1,1)=1.0 sample.f:3: real x(500000,500000) Array x at () is too large to handle Array element value at ( ) out of defined range [Warning] real x(2:5)! x 2 5 x(1)=1.0 1 e.f: In program sample : e.f:5: warning: x(1)=1.0 Array element value at () out of defined range Array has too many dimensions, as of dimension specifier at ( ) 7 real x(2,2,2,2,2,2,2,2) x 8 6

7 x(1,1,1,1,1,1,1,1)=1.0 e.f: In program sample : e.f:3: real x(2,2,2,2,2,2,2,2) Array has too many dimensions, as of dimension specifier at () Attempt to modify variable [A] at (1) while it serves as DO-loop iterator at (2) (1) DO [A] (2) integer i, j, k k=0 do i=1, 3 DO i k=k+i i=k DO i do e.f: In program sample : e.f:6: do i=1, 3 1 e.f:8: (continued): i=k 2 Attempt to modify variable i at (2) while it serves as DO-loop iterator at (1) Character constant at ( ) has no closing apostrophe at (1) ( ) (character constant) (apostrophe) 72 i=3 write(6,*) i,i, e.f: In program sample : e.f:4: write(6,*) i,i, 1 2 Character constant at (1) has no closing apostrophe at (2) Continuation indicator at ( ) must appear in column 6 [Warning] 6 Division by 0 (zero) at ( ) (IEEE not yet supported) [Warning] 0 0 #INF infinity 7

8 a=1.0/0.0 0 sample.f:4: warning: a=1.0/0.0 Division by 0 (zero) at () (IEEE not yet supported) DO-statement reference to label at (1) and label definition at (3) separated by unterminated block starting at (2) (1) DO (3) (2) integer i, j, k/0/ do 1000 i=1, 3 do 2000 j=1, 2 k=k+i+j 1000 continue 2000 continue 2000 continue 1000 sample.f:5: do 1000 i=1, 3 1 sample.f:6: (continued): do 2000 j=1, 2 2 sample.f:8: (continued): 1000 continue 3 DO-statement reference to label at (1) and label definition at (3) separated by unterminated block starting at (2) DO-variable [A] is type REAL or DOUBLE PRECISION at ( ) unexpected behavior likely [Warning] DO [A] End of source file before of block started at ( ) ( ) END a= write(6,*) a END sample.f:4: 8

9 a= End of source file before of block started at () Expression at ( ) has incorrect data type or rank for its context rank program error real x, y read(5,*) x, x,, y=3.0*x+4.0 write(6,*) y=, y error.f: In program error : error.f:4: read(5,*) x, Expression at () has incorrect data type or rank for its context program error read x, y real read read(5,*) x y=3.0*x+4.0 write(6,*) y=, y error.f: In program error : error.f:3: read x, y Expression at () has incorrect data type or rank for its context program error real x, y read(5,*) x x y=3.0*x+4.0 write(6,*) y=, y error.f: In program error : error.f:4: read(5,*) x Expression at () has incorrect data type or rank for its context program error real x, y read x read(5,*) (5,*) y=3.0*x+4.0 write(6,*) y=, y program error real x, y read(5,*) x y=3.0*x+4.0 write(6,*) y=, y 9

10 error.f: In program error : error.f:4: read x Expression at () has incorrect data type or rank for its context Extraneous comma in FORMAT statement at ( ) FORMAT, First-column ampersand continuation at ( ) [Warning] 1 & Gratuitous parentheses surround implied-do construct at ( ) [Warning] DO Invalid $ specifier in FORMAT statement at ( ) correctform:$ $ $ character a*10 a= abc write(6,1000) a 1000 format(a10,2$) $ 2 sample.f:7: 1000 format(a10,2$) Invalid $ specifier in FORMAT statement at () -- correct form: $ Invalid : specifier in FORMAT statement at ( ) correctform:: : : Invalid A specifier in FORMAT statement at ( ) correct form: [r]a[w] A [ r]a[ w] character c*10 c= abc write(6,1000) c 1000 format(a10.2) A write(6,2000) c, c 2000 format(2a4) r=2 w=4 10

11 sample.f:7: 1000 format(a10.2) Invalid A specifier in FORMAT statement at () -- correct form: [r]a[w] Invalid BN specifier in FORMAT statement at ( ) correctform:bn BN BN Invalid BZ specifier in FORMAT statement at ( ) correctform:bz BZ BZ Invalid declaration of or reference to symbol [A] at (2) [initially seen at (1)] (1) [A] (2) program g g real g, T, L, pi pi= g=4*pi*pi/t/t*(l+r+2.0/5.0*r*r/(l+r)) write(6,*) g sample.f: In program g : sample.f:2: program g 1 sample.f:3: (continued): real g, T, L, pi 2 Invalid declaration of or reference to symbol g at (2) [initially seen at (1)] program gravity real g, T, L, pi T pi= g=4*pi*pi/t/t(l+r+2.0/5.0*r*r/(l+r)) T*( T( write(6,*) g T() sample.f: In program gravity : sample.f:3: real g, T, L, pi 1 sample.f:8: (continued): g=4*pi*pi/t/t(l+r+2.0/5.0*r*r/(l+r)) 2 Invalid declaration of or reference to symbol t at (2) [initially seen at (1)] 11

12 Invalid D specifier in FORMAT statement at ( ) correct form: [r]dw.d D D [ r]dw.d w d Invalid E specifier in FORMAT statement at ( ) correct form: [r]ew.d[ee] E E [ r]ew.d[e e] w d real x x=100.0 write(6,1000) x 1000 format(e10) write(6,2000) x 2000 format(e10.2)! 0.10E+03 write(6,3000) x 3000 format(e10.2e5)!.10e e.f: In program sample : e.f:7: 1000 format(e10) Invalid E specifier in FORMAT statement at () -- correct form: [r]ew.d[ee] Invalid first character at ( ) 1 * c program gravity real g, T, L, pi pi= g=4*pi*pi/t/t*(l+r+2.0/5.0*r*r/(l+r)) 1 write(6,*) g sample.f: In program gravity : sample.f:8: g=4*pi*pi/t/t*(l+r+2.0/5.0*r*r/(l+r)) Invalid first character at () [info -f g77 M LEX] Invalid form for [A] statement at ( ) [A] PROGRAM assignment type declaration program a+b a=2.0 b=7.0 c=a+b PROGRAM 1 12

13 write(6,*) c sample.f:2: program a+b Invalid form for PROGRAM statement at () program gravity real g, T, L, pi pi= g=4pi*pi/t/t*(l+r+2.0/5.0*r*r/(l+r)) * 4*pi*pi write(6,*) g sample.f: In program gravity : sample.f:8: g=4pi*pi/t/t*(l+r+2.0/5.0*r*r/(l+r)) Invalid form for assignment statement at () program gravity real g, T, L, pi pi= g=4*pi*pi/t/t*(l+r+2.0/5.0*r*r/(l+r)) g 5 write(6,*) sample.f: In program gravity : sample.f:8: g=4*pi*pi/t/t*(l+r+2.0/5.0*r*r/(l+r)) Invalid form for assignment statement at () g pi=3.14..=*pi*pi.. program error read(5,*) x y=3,0*x+4,0., write(6,*) y=, y error.f: In program error : error.f:4: y=3,0*x+4,0 Invalid form for assignment statement at () program error real x, y, read(5,*) x y=3.0*x+4.0 write(6,*) y=, y error.f: In program error : 13

14 error.f:3: real x, y, Invalid form for type-declaration statement at () program error real a, b, c a=2.0, b=3.0 1 c=a+b write(6,*) a+b=, c error.f: In program error : error.f:4: a=2.0, b=3.0 Invalid form for assignment statement at () Label [A] already defined at (1) when redefined at (2) (2) [A] (1) Missing close parenthese at (2) needed to match open parenthese at (1) 1 open parenthese close parenthese 72 program gravity real g, T, L, pi pi= g=4*pi*pi/t/t*(l+r+2.0/5.0*r*r/(l+r) (L+r)) write(6,*) g sample.f: In program gravity : sample.f:8: g=4*pi*pi/t/t*(l+r+2.0/5.0*r*r/(l+r) 1 2 Missing close parenthese at (2) needed to match open parenthese at (1) program gravity real g, T, L g=4.0* * /t**2.0*((l+r)+2.0/5.0*r**2.0/(l+r)) write(6,*) g 73 sample.f: In program gravity : sample.f:8: g=4*pi*pi/t/t*(l+r+2.0/5.0*r*r/(l+r)

15 Missing close parenthese at (2) needed to match open parenthese at (1) Missing first operand for binary operator at ( ) ( ) (binary operator (operand) + - program gravity real g, T, L, pi pi= g=4*pi*pi*/t/t*(l+r+2.0/5.0*r*r/(l+r)) */T write(6,*) g / sample.f: In program gravity : sample.f:8: g=4*pi*pi*/t/t*(l+r+2.0/5.0*r*r/(l+r)) Missing first operand for binary operator at () Missing operand for operator at (1) at of expression at (2) (1) (operator) (operand) program gravity real g, T, L g=4.0* * /t**2.0*((l+r)+2.0/5.0*r**2.0/(l+r)) write(6,*) g +r)) + 72 r)) sample.f: In program gravity : sample.f:8: g=4.0* * /t**2.0*((l+r)+2.0/5.0*r**2.0/(l+ 12 Missing operand for operator at (1) at of expression at (2) Non-numeric character at ( ) in label field 2 5 program gravity real g, T, L, pi pi= g=4*pi*pi/t/t*(l+r+2.0/5.0*r*r/(l+r)) g= 4 write(6,*) g 15

16 sample.f: In program gravity : sample.f:8: g=4*pi*pi/t/t*(l+r+2.0/5.0*r*r/(l+r)) Non-numeric character at () in label field [info -f g77 M LEX] Reference to label at (2) inconsistent with its definition at (1) (2) (1) program error real x, y 1000 y=0.0 do 1000 j=1, 4 y=y continue do (2000 error.f: In program error : error.f:4: 1000 y=0.0 1 error.f:5: (continued): do 1000 j=1, 4 2 Reference to label at (2) inconsistent with its definition at (1) Substring begin/ point at ( ) out of defined range [Warning] character a*10 a(10:12)= abc! a 10 a abc sample.f:5: warning: a(10:12)= abc Substring begin/ point at () out of defined range Too many elements as of (2) for array reference at (1) 1 (2) real x(2) x(1,2)=1.0 x x 2 e.f: In program sample : e.f:5: x(1,2)=

17 Too many elements as of (2) for array reference at (1) Unrecognized character at ( ) ( ) i=3 3 write(6,*) i,i, e.f: In program sample : e.f:3: i=3 Unrecognized character at () [info -f g77 M LEX] i=3 write(6,*) i,i, i i,i e.f: In program sample : e.f:4: write(6,*) i,i, Unrecognized character at () [info -f g77 M LEX] program gravity real g, T, L, pi pi= g=4*pi*pi/t/t*{l+r+0.4*r*r/(l+r)} {} () write(6,*) g sample.f: In program gravity : sample.f:8: g=4*pi*pi/t/t*{l+r+2.0/5.0*r*r/(l+r)} Unrecognized character at () [info -f g77 M LEX] program gravity real g, T, L, pi pi= g=4*pi2/t/t*(l+r+2.0/5.0*r*r/(l+r)) ** write(6,*) g sample.f: In program gravity : sample.f:8: 17

18 g=4*pi2/t/t*(l+r+2.0/5.0*r*r/(l+r)) Unrecognized character at () [info -f g77 M LEX] Zero-length character constant at ( ) [Warning] ( ) 0 18

19 5 undefined reference to Fortran program error real y y=cas( /6.0) write(6,*) cos( /6)=, y cos D:\home\g77-error-test>f77 error.f -o error C:\Users\hm\AppData\Local\Temp\ccquaaaa.o(.text+0x2b):error.f: undefined referen ce to cas_ cas_ 19

20 6 20

21 .NOT. operator at (1) must operate on scalar subexpressions but the subexpression at (2) is [A] 4.NOT. operator at (1) must operate on subexpression of logical type, but the subexpression at (1) is not of logical type 5 [A] too few arguments (starting with dummy argument [B] ) as of (1) for statement function reference at (2) 4 [A] too many arguments as of (2) for statement function reference at (1) 4 Alternate return specifier at ( ) invalid within a function 5 Alternate return specifier at ( ) invalid within a main program unit 5 Arithmetic operator at (1) must operate on two subexpressions of arithmetic type, but the subexpression at (2) is not of arithmetic type 6 Arithmetic operator at ( ) must operate on two scalar (not array) subexpressions, two function invocations returning arithmetic scalars, or a combination of both but the subexpression at (1) is [A] 5 Arithmetic operator at ( ) must operate on two subexpressions of arithmetic type, but neither subexpression at (1) or (2) is of arithmetic type 5 Array [A] at ( ) istoolargetohandle 6 Array element value at ( ) out of defined range 6 Array has too many dimensions, as of dimension specifier at ( ) 6 Attempt to modify variable [A] at (1) while it serves as DO-loop iterator at (2) 7 Character constant at ( ) has no closing apostrophe at (1) 7 Continuation indicator at ( ) must appear in column 6 7 Division by 0 (zero) at ( ) (IEEE not yet supported) 7 DO-statement reference to label at (1) and label definition at (3) separated by unterminated block starting at (2) 8 DO-variable [A] is type REAL or DOUBLE PRECISION at ( ) unexpected behavior likely 8 End of source file before of block started at ( ) 8 Expression at ( ) has incorrect data type or rank for its context 9 Extraneous comma in FORMAT statement at ( ) 10 f77... [command prompt ] 2 f77: source file : No such file or directory [f77.exe ] 3 First-column ampersand continuation at ( ) 10 Gratuitous parentheses surround implied-do construct at ( ) 10 Invalid : specifier in FORMAT statement at ( ) correctform:: 10 Invalid $ specifier in FORMAT statement at ( ) correctform:$ 10 Invalid A specifier in FORMAT statement at ( ) correct form: [r]a[w] 10 Invalid BN specifier in FORMAT statement at ( ) correctform:bn 11 Invalid BZ specifier in FORMAT statement at ( ) correctform:bz 11 Invalid D specifier in FORMAT statement at ( ) correct form: [r]dw.d 12 Invalid declaration of or reference to symbol [A] at (2) [initially seen at (1)] 11 Invalid E specifier in FORMAT statement at ( ) correct form: [r]ew.d[ee] 12 Invalid first character at ( ) 12 Invalid form for [A] statement at ( ) 12 21

22 Invalid form for PROGRAM/WRITE/READ/assignment/type declaration/... statement at ( ) 12 Label already defined at (1) when redefined at (2) 14 Missing close parenthese at (2) needed to match open parenthese at (1) 14 Missing first operand for binary operator at ( ) 15 Missing operand for operator at (1) at of expression at (2) 15 No such file or directory [f77.exe ] 3 Non-numeric character at ( )inlabelfield 15 Reference to label at (2) inconsistent with its definition at (1) 16 Substring begin/ point at ( ) out of defined range 16 too few arguments (starting with dummy argument... 4 too many arguments as of... 4 Too many elements as of (2) for array reference at (1) 16 undefined reference to... [ ] 19 Unrecognized character at ( ) 17 Zero-length character constant at ( ) 18 too few arguments (starting with dummy argument ) as of (1) for statement function reference at (2) 4 too many arguments as of (2) for statement function reference at (1) 4 22

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

IDL_lecture_12Jan.ppt

IDL_lecture_12Jan.ppt NAOJ/ADC IDL (2012 Jan) IDL IDL ASIAA IDL RSI(->ITT) IDL IDL IDL IDL ADC IDL IDL ADC ADC Practical IDL programming By L. E. Gumley (MORGAN Kaufmann 8103 at Amazon IDLHELP (online ) Idlhelp on unix shell

More information

Platypus-QM β ( )

Platypus-QM β ( ) Platypus-QM β (2012.11.12) 1 1 1.1...................................... 1 1.1.1...................................... 1 1.1.2................................... 1 1.1.3..........................................

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

Rによる計量分析:データ解析と可視化 - 第3回 Rの基礎とデータ操作・管理

Rによる計量分析:データ解析と可視化 - 第3回  Rの基礎とデータ操作・管理 R 3 R 2017 Email: gito@eco.u-toyama.ac.jp October 23, 2017 (Toyama/NIHU) R ( 3 ) October 23, 2017 1 / 34 Agenda 1 2 3 4 R 5 RStudio (Toyama/NIHU) R ( 3 ) October 23, 2017 2 / 34 10/30 (Mon.) 12/11 (Mon.)

More information

X : 2012? (ISO/IEC : 2010) 1 {! [jfortran 1473] } {! %Y } {! NOTE } {!

X : 2012? (ISO/IEC : 2010) 1 {! [jfortran 1473] } {! %Y } {! NOTE } {! 1 {! 2010-12-16 [jfortran 1473] 2 2011-01-01 - } {! 2010-12-05 2010-12-08 %Y } {! 2010-12-02 NOTE } {! 2010-11-26 h.*i } {! 2010-11-24 [jfortran 1460] (by ) } {! 2010-11-05 ( 10-3-4) 2010-11-19 } {! 2010-09-20

More information

コンピュータ概論

コンピュータ概論 4.1 For Check Point 1. For 2. 4.1.1 For (For) For = To Step (Next) 4.1.1 Next 4.1.1 4.1.2 1 i 10 For Next Cells(i,1) Cells(1, 1) Cells(2, 1) Cells(10, 1) 4.1.2 50 1. 2 1 10 3. 0 360 10 sin() 4.1.2 For

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

Ver.1 1/17/2003 2

Ver.1 1/17/2003 2 Ver.1 1/17/2003 1 Ver.1 1/17/2003 2 Ver.1 1/17/2003 3 Ver.1 1/17/2003 4 Ver.1 1/17/2003 5 Ver.1 1/17/2003 6 Ver.1 1/17/2003 MALTAB M GUI figure >> guide GUI GUI OK 7 Ver.1 1/17/2003 8 Ver.1 1/17/2003 Callback

More information

compiler-text.dvi

compiler-text.dvi 2018.4 1 2 2.1 1 1 1 1: 1. (source program) 2. (object code) 3. 1 2.2 C if while return C input() output() fun var ( ) main() C (C-Prime) C A B C 2.3 Pascal P 1 C LDC load constant LOD load STR store AOP

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

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

新版明解C言語入門編

新版明解C言語入門編 175cm 60kg ( ) 175cm 175.3cm 175.869758 cm 175cm 60kg p.177 18-1 vx - vy vx vy List -1 List -1 int vx, vy; puts(""); printf(" vx "); scanf("%d", &vx); printf(" vy "); scanf("%d", &vy); printf("vx + vy

More information

untitled

untitled Fortran90 ( ) 17 12 29 1 Fortran90 Fortran90 FORTRAN77 Fortran90 1 Fortran90 module 1.1 Windows Windows UNIX Cygwin (http://www.cygwin.com) C\: Install Cygwin f77 emacs latex ps2eps dvips Fortran90 Intel

More information

joho09.ppt

joho09.ppt s M B e E s: (+ or -) M: B: (=2) e: E: ax 2 + bx + c = 0 y = ax 2 + bx + c x a, b y +/- [a, b] a, b y (a+b) / 2 1-2 1-3 x 1 A a, b y 1. 2. a, b 3. for Loop (b-a)/ 4. y=a*x*x + b*x + c 5. y==0.0 y (y2)

More information

11042 計算機言語7回目 サポートページ:

11042 計算機言語7回目  サポートページ: 11042 7 :https://goo.gl/678wgm November 27, 2017 10/2 1(print, ) 10/16 2(2, ) 10/23 (3 ) 10/31( ),11/6 (4 ) 11/13,, 1 (5 6 ) 11/20,, 2 (5 6 ) 11/27 (7 12/4 (9 ) 12/11 1 (10 ) 12/18 2 (10 ) 12/25 3 (11

More information

untitled

untitled II 4 Yacc Lex 2005 : 0 1 Yacc 20 Lex 1 20 traverse 1 %% 2 [0-9]+ { yylval.val = atoi((char*)yytext); return NUM; 3 "+" { return + ; 4 "*" { return * ; 5 "-" { return - ; 6 "/" { return / ; 7 [ \t] { /*

More information

MOTIF XF 取扱説明書

MOTIF XF 取扱説明書 MUSIC PRODUCTION SYNTHESIZER JA 2 (7)-1 1/3 3 (7)-1 2/3 4 (7)-1 3/3 5 http://www.adobe.com/jp/products/reader/ 6 NOTE http://japan.steinberg.net/ http://japan.steinberg.net/ 7 8 9 A-1 B-1 C0 D0 E0 F0 G0

More information

1F90/kouhou_hf90.dvi

1F90/kouhou_hf90.dvi Fortran90 3 33 1 2 Fortran90 FORTRAN 1956 IBM IBM704 FORTRAN(FORmula TRANslation ) 1965 FORTRAN66 1978 FORTRAN77 1991 Fortran90 Fortran90 Fortran Fortran90 6 Fortran90 77 90 90 Fortran90 [ ] Fortran90

More information

syspro-0405.ppt

syspro-0405.ppt 3 4, 5 1 UNIX csh 2.1 bash X Window 2 grep l POSIX * more POSIX 3 UNIX. 4 first.sh #!bin/sh #first.sh #This file looks through all the files in the current #directory for the string yamada, and then prints

More information

16soukatsu_p1_40.ai

16soukatsu_p1_40.ai 2 2016 DATA. 01 3 DATA. 02 4 DATA. 03 5 DATA. 04 6 DATA. 05 7 DATA. 06 8 DATA. 07 9 DATA. 08 DATA. 09 DATA. 10 DATA. 11 DATA. 12 DATA. 13 DATA. 14 10 11 12 13 COLUMN 1416 17 18 19 DATA. 15 20 DATA. 16

More information

(2-1) x, m, 2 N(m, 2 ) x REAL*8 FUNCTION NRMDST (X, M, V) X,M,V REAL*8 x, m, 2 X X N(0,1) f(x) standard-norm.txt normdist1.f x=0, 0.31, 0.5

(2-1) x, m, 2 N(m, 2 ) x REAL*8 FUNCTION NRMDST (X, M, V) X,M,V REAL*8 x, m, 2 X X N(0,1) f(x) standard-norm.txt normdist1.f x=0, 0.31, 0.5 2007/5/14 II II agata@k.u-tokyo.a.jp 0. 1. x i x i 1 x i x i x i x x+dx f(x)dx f(x) f(x) + 0 f ( x) dx = 1 (Probability Density Funtion 2 ) (normal distribution) 3 1 2 2 ( x m) / 2σ f ( x) = e 2πσ x m

More information

AN 100: ISPを使用するためのガイドライン

AN 100: ISPを使用するためのガイドライン ISP AN 100: In-System Programmability Guidelines 1998 8 ver.1.01 Application Note 100 ISP Altera Corporation Page 1 A-AN-100-01.01/J VCCINT VCCINT VCCINT Page 2 Altera Corporation IEEE Std. 1149.1 TCK

More information

num2.dvi

num2.dvi kanenko@mbk.nifty.com http://kanenko.a.la9.jp/ 16 32...... h 0 h = ε () 0 ( ) 0 1 IEEE754 (ieee754.c Kerosoft Ltd.!) 1 2 : OS! : WindowsXP ( ) : X Window xcalc.. (,.) C double 10,??? 3 :, ( ) : BASIC,

More information

橡j_Oracle_whitepaper.PDF

橡j_Oracle_whitepaper.PDF Pervasive-Oracle 1 1 Pervasive Software Pervasive-Oracle / Pervasive Oracle Pervasive-Oracle ISV Pervasive-Oracle Pervasive.SQL Oracle 2 Pervasive-Oracle Pervasive-Oracle Pervasive.SQL Oracle Open Database

More information

2 (4)-7

2 (4)-7 2 (4)-7 (4)-7 3 4 p r f > 5 6 7 8 9 10 11 r q!1 o!0!2!3!4!5 w e t y u i!6!7 q w e r t y 12 u i o!0!1!7!2!3!4!5 p r f >!6!7 13 !8!8!9!9 @0 @0 14 @1 @2 @3 @4 @5 @6 @7 @8 @9 @1 @2 @3 @5 @6 @7 @8 @9 @4 15

More information

解きながら学ぶC++入門編

解きながら学ぶC++入門編 第 1 章 画面 出力 入力 2 問題 1-1 C++ List 1-1p.4 C++ // cout

More information

uCosminexus DocumentBroker Version 5 メッセージ

uCosminexus DocumentBroker Version 5 メッセージ ucosminexus DocumentBroker Version 5 3021-3-405 R-1595F-13 ucosminexus DocumentBroker Platform Version 5 05-00 OS Windows Server 2008 R2 R-1L95F-13 ucosminexus DocumentBroker Platform Version 5 05-00 OS

More information

新版 明解C++入門編

新版 明解C++入門編 第 1 章画面 出力 入力 C++ C++ C++ C++ C++ C++ C++ C++ #include using C++ C++ C++ main C++ C++ C++ int double char C++ C++ C++ string C++ C++ C++ 21 1-1 C++ 歴史 C++ C++ 歴史 CC with classes Fig.1-1 C C++ Simula 67

More information

Pascal Pascal Free Pascal CPad for Pascal Microsoft Windows OS Pascal

Pascal Pascal Free Pascal CPad for Pascal Microsoft Windows OS Pascal Pascal Pascal Pascal Free Pascal CPad for Pascal Microsoft Windows OS 2010 10 1 Pascal 2 1.1.......................... 2 1.2.................. 2 1.3........................ 3 2 4 2.1................................

More information

1 I EViews View Proc Freeze

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

More information

情報活用資料-03-20150604

情報活用資料-03-20150604 cp hello.f90 echo.f90 mv echo.f90 echofile.f90 cp echofile.f90 echo.f90 7 8 9 Echo key input program echo character(80):: A read (5,*) A write (6,*) A stop end program echo chracter read 10 Echo key input

More information

インターネット接続ガイド v110

インターネット接続ガイド v110 1 2 1 2 3 3 4 5 6 4 7 8 5 1 2 3 6 4 5 6 7 7 8 8 9 9 10 11 12 10 13 14 11 1 2 12 3 4 13 5 6 7 8 14 1 2 3 4 < > 15 5 6 16 7 8 9 10 17 18 1 2 3 19 1 2 3 4 20 U.R.G., Pro Audio & Digital Musical Instrument

More information

ストラドプロシージャの呼び出し方

ストラドプロシージャの呼び出し方 Release10.5 Oracle DataServer Informix MS SQL NXJ SQL JDBC Java JDBC NXJ : NXJ JDBC / NXJ EXEC SQL [USING CONNECTION ] CALL [.][.] ([])

More information

Compatibility list: vTESTstudio/CANoe

Compatibility list: vTESTstudio/CANoe 1.0 および 1.1 で作成されたテストユニットは テスト内で使用されるコマンドに関わらず 必ず下記の最小バージョン以降の CANoe にて実行してください vteststudio 2.0 以上で作成されたテストユニット ( 新機能を使用していない場合 ) は それぞれに応じた最小バージョン以降の CANoe にて実行してください 下記の表にて 各バージョンに対応する要件をご確認ください vteststudio

More information

08 p Boltzmann I P ( ) principle of equal probability P ( ) g ( )g ( 0 ) (4 89) (4 88) eq II 0 g ( 0 ) 0 eq Taylor eq (4 90) g P ( ) g ( ) g ( 0

08 p Boltzmann I P ( ) principle of equal probability P ( ) g ( )g ( 0 ) (4 89) (4 88) eq II 0 g ( 0 ) 0 eq Taylor eq (4 90) g P ( ) g ( ) g ( 0 08 p. 8 4 k B log g() S() k B : Boltzmann T T S k B g g heat bath, thermal reservoir... 4. I II II System I System II II I I 0 + 0 const. (4 85) g( 0 ) g ( )g ( ) g ( )g ( 0 ) (4 86) g ( )g ( 0 ) 0 (4

More information

2

2 L C -24K 9 L C -22K 9 2 3 4 5 6 7 8 9 10 11 12 11 03 AM 04 05 0 PM 1 06 1 PM 07 00 00 08 2 PM 00 4 PM 011 011 021 041 061 081 051 071 1 2 4 6 8 5 7 00 00 00 00 00 00 00 00 30 00 09 00 15 10 3 PM 45 00

More information

Microsoft Word - Sample_CQS-Report_English_backslant.doc

Microsoft Word - Sample_CQS-Report_English_backslant.doc ***** Corporation ANSI C compiler test system System test report 2005/11/16 Japan Novel Corporation *****V43/NQP-DS-501-1 Contents Contents......2 1. Evaluated compiler......3 1.1. smp-compiler compiler...3

More information

ScanFront300/300P セットアップガイド

ScanFront300/300P セットアップガイド libtiff Copyright (c) 1988-1996 Sam Leffler Copyright (c) 1991-1996 Silicon Graphics, Inc. Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby

More information

エレクトーンのお客様向けiPhone/iPad接続マニュアル

エレクトーンのお客様向けiPhone/iPad接続マニュアル / JA 1 2 3 4 USB TO DEVICE USB TO DEVICE USB TO DEVICE 5 USB TO HOST USB TO HOST USB TO HOST i-ux1 6 7 i-ux1 USB TO HOST i-mx1 OUT IN IN OUT OUT IN OUT IN i-mx1 OUT IN IN OUT OUT IN OUT IN USB TO DEVICE

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

TH-42PAS10 TH-37PAS10 TQBA0286

TH-42PAS10 TH-37PAS10 TQBA0286 TH-42PAS10 TH-37PAS10 TQBA0286 2 4 8 10 11 17 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 38 42 44 46 50 51 52 53 54 3 4 5 6 7 8 3 4 1 2 9 5 6 1 4 2 3 5 6 10 11 1 2 3 4 12 13 14 TH-42PAS10 TH-42PAS10

More information

Chapter 1 1-1 2

Chapter 1 1-1 2 Chapter 1 1-1 2 create table ( date, weather ); create table ( date, ); 1 weather, 2 weather, 3 weather, : : 31 weather -- 1 -- 2 -- 3 -- 31 create table ( date, ); weather[] -- 3 Chapter 1 weather[] create

More information

9 8 7 (x-1.0)*(x-1.0) *(x-1.0) (a) f(a) (b) f(a) Figure 1: f(a) a =1.0 (1) a 1.0 f(1.0)

9 8 7 (x-1.0)*(x-1.0) *(x-1.0) (a) f(a) (b) f(a) Figure 1: f(a) a =1.0 (1) a 1.0 f(1.0) E-mail: takio-kurita@aist.go.jp 1 ( ) CPU ( ) 2 1. a f(a) =(a 1.0) 2 (1) a ( ) 1(a) f(a) a (1) a f(a) a =2(a 1.0) (2) 2 0 a f(a) a =2(a 1.0) = 0 (3) 1 9 8 7 (x-1.0)*(x-1.0) 6 4 2.0*(x-1.0) 6 2 5 4 0 3-2

More information

Microsoft Word - 資料 docx

Microsoft Word - 資料 docx y = Asin 2πt T t t = t i i 1 n+1 i i+1 Δt t t i = Δt i 1 ( ) y i = Asin 2πt i T 29 (x, y) t ( ) x = Asin 2πmt y = Asin( 2πnt + δ ) m, n δ (x, y) m, n 30 L A x y A L x 31 plot sine curve program sine implicit

More information

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

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

More information

2 3

2 3 RR-XR330 C Matsushita Electric Industrial Co., Ltd.2001 2 3 4 + - 5 6 1 2 3 2 1-3 + + - 22 +- 7 22 8 9 1 2 1 2 1 2 3 12 4 1 2 5 12 1 1 2 3 1 2 1 2 10 11 1 2 $% 1 1 2 34 2 % 3 % 1 2 1 2 3 1 2 12 13 1 2

More information

2

2 L C -60W 7 2 3 4 5 6 7 8 9 0 2 3 OIL CLINIC BAR 4 5 6 7 8 9 2 3 20 2 2 XXXX 2 2 22 23 2 3 4 5 2 2 24 2 2 25 2 3 26 2 3 6 0 2 3 4 5 6 7 8 9 2 3 0 2 02 4 04 6 06 8 08 5 05 2 3 4 27 2 3 4 28 2 3 4 5 2 2

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

fx-9860G Manager PLUS_J

fx-9860G Manager PLUS_J fx-9860g J fx-9860g Manager PLUS http://edu.casio.jp k 1 k III 2 3 1. 2. 4 3. 4. 5 1. 2. 3. 4. 5. 1. 6 7 k 8 k 9 k 10 k 11 k k k 12 k k k 1 2 3 4 5 6 1 2 3 4 5 6 13 k 1 2 3 1 2 3 1 2 3 1 2 3 14 k a j.+-(),m1

More information

untitled

untitled II yacc 005 : 1, 1 1 1 %{ int lineno=0; 3 int wordno=0; 4 int charno=0; 5 6 %} 7 8 %% 9 [ \t]+ { charno+=strlen(yytext); } 10 "\n" { lineno++; charno++; } 11 [^ \t\n]+ { wordno++; charno+=strlen(yytext);}

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

C. S2 X D. E.. (1) X S1 10 S2 X+S1 3 X+S S1S2 X+S1+S2 X S1 X+S S X+S2 X A. S1 2 a. b. c. d. e. 2

C. S2 X D. E.. (1) X S1 10 S2 X+S1 3 X+S S1S2 X+S1+S2 X S1 X+S S X+S2 X A. S1 2 a. b. c. d. e. 2 I. 200 2 II. ( 2001) 30 1992 Do X for S2 because S1(is not desirable) XS S2 A. S1 S2 B. S S2 S2 X 1 C. S2 X D. E.. (1) X 12 15 S1 10 S2 X+S1 3 X+S2 4 13 S1S2 X+S1+S2 X S1 X+S2. 2. 3.. S X+S2 X A. S1 2

More information

2 K D 3

2 K D 3 Abstruct This paper is a study of Wa-kun and the colloquial vocabulary of the Tang Dynasty novel known as You Xian Ku. You Xian Ku reflects not only the richness in the Literature of the Tang Dynasty -

More information

CM1-GTX

CM1-GTX CM1-GTX000-2002 R R i R ii 1-1 1-2 1-3 Process Variables Process Variables Pressure Output Analog Output Sensor Temp. Lower Range Value (0%) Upper Range Value (100%) Pressure Pressure Chart Pressure

More information

( ) P, P P, P (negation, NOT) P ( ) P, Q, P Q, P Q 3, P Q (logical product, AND) P Q ( ) P, Q, P Q, P Q, P Q (logical sum, OR) P Q ( ) P, Q, P Q, ( P

( ) P, P P, P (negation, NOT) P ( ) P, Q, P Q, P Q 3, P Q (logical product, AND) P Q ( ) P, Q, P Q, P Q, P Q (logical sum, OR) P Q ( ) P, Q, P Q, ( P Advent Calendar 2018 @Fukuso Sutaro,,, ( ) Davidson, 5, 1 (quantification) (open sentence) 1,,,,,, 1 1 (propositional logic) (truth value) (proposition) (sentence) 2 (2-valued logic) 2, true false (truth

More information

情報活用資料

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

More information

DocuWide 2051/2051MF 補足説明書

DocuWide 2051/2051MF 補足説明書 ëêèõ . 2 3 4 5 6 7 8 9 0 2 3 4 [PLOTTER CONFIGURATION] [DocuWide 2050/205 Version 2.2.0] [SERIAL] BAUD_RATE =9600 DATA_BIT =7 STOP_BIT = PARITY =EVEN HANDSHAKE =XON/XOFF EOP_TIMEOUT_VALUE =0 OUTPUT RESPONSE

More information

BS・110度CSデジタルハイビジョンチューナー P-TU1000JS取扱説明書

BS・110度CSデジタルハイビジョンチューナー P-TU1000JS取扱説明書 C S0 CS Digital Hi-Vision Tuner C C C C S0-0A TQZW99 0 C C C C 4 5 6 7 8 9 C C C C C C C C C C C C C C C C C C C C C C C 0 FGIH C 0 FGIH C C C FGIH FG IH FGIH I H FGIH FGIH 0 C C # $ IH F G 0 # $ # $

More information

解きながら学ぶJava入門編

解きながら学ぶJava入門編 44 // class Negative { System.out.print(""); int n = stdin.nextint(); if (n < 0) System.out.println(""); -10 Ÿ 35 Ÿ 0 n if statement if ( ) if i f ( ) if n < 0 < true false true false boolean literalboolean

More information

iPhone/iPad接続マニュアル

iPhone/iPad接続マニュアル / JA 2 3 USB 4 USB USB i-ux1 USB i-ux1 5 6 i-mx1 THRU i-mx1 THRU 7 USB THRU 1 2 3 4 1 2 3 4 5 8 1 1 9 2 1 2 10 1 2 2 6 7 11 1 2 3 4 5 6 7 8 12 1 2 3 4 5 6 13 14 15 WPA Supplicant Copyright 2003-2009, Jouni

More information

( ) 1 Windows HTML ( ) ( ) ( ) WWW 10 ( )

( ) 1 Windows HTML ( ) ( ) ( ) WWW 10 ( ) ( ) 1 Windows HTML ( ) ( ) ( ) 1. 2. 3. 4. WWW 10 ( ) 2 1. 2. 1 3. ( ) 4. 5. 3 Windows 2 7 8 MS Word MS Excel 1. MS Word 600 2. MS Excel 1 34 2 83 3 23 4 70 5 100 6 45 7 58 8 29 9 68 10 72 11 37 12 12

More information

2009 D Pascal CASL II ( ) Pascal C 3. A A Pascal TA TA

2009 D Pascal CASL II ( ) Pascal C 3. A A Pascal TA TA 2009 D 1 1.1 1.2 Pascal CASL II ( ) Pascal 1. 2009 10 15 2010 1 29 16 2. C 3. A A 2 1 2 Pascal 1.3 1. 2. TA enshud@image.med.osaka-u.ac.jp TA enshu-d@image.med.osaka-u.ac.jp nakamoto@image.med.osaka-u.ac.jp

More information

# let rec sigma (f, n) = # if n = 0 then 0 else f n + sigma (f, n-1);; val sigma : (int -> int) * int -> int = <fun> sigma f n ( : * -> * ) sqsum cbsu

# let rec sigma (f, n) = # if n = 0 then 0 else f n + sigma (f, n-1);; val sigma : (int -> int) * int -> int = <fun> sigma f n ( : * -> * ) sqsum cbsu II 4 : 2001 11 7 keywords: 1 OCaml OCaml (first-class value) (higher-order function) 1.1 1 2 + 2 2 + + n 2 sqsum 1 3 + 2 3 + + n 3 cbsum # let rec sqsum n = # if n = 0 then 0 else n * n + sqsum (n - 1)

More information

a b GE(General Erectrics) 9 4 irr (JAPLA 2009/12) Example1 120 P = C r + C 2 (1 + r) C t 1 (1 + r) t 1 + C t + F (1 + r) t 10

a b GE(General Erectrics) 9 4 irr (JAPLA 2009/12) Example1 120 P = C r + C 2 (1 + r) C t 1 (1 + r) t 1 + C t + F (1 + r) t 10 1 SHIMURA Masato 2010 9 27 1 1 2 CF 6 3 10 *1 irr irr irr(inner rate of return)function is able to written only few lines,and it is very powerful and useful for simulate unprofitable business model. 1

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

Motivation and Purpose There is no definition about whether seatbelt anchorage should be fixed or not. We tested the same test conditions except for t

Motivation and Purpose There is no definition about whether seatbelt anchorage should be fixed or not. We tested the same test conditions except for t Review of Seatbelt Anchorage and Dimensions of Test Bench Seat Cushion JASIC Motivation and Purpose There is no definition about whether seatbelt anchorage should be fixed or not. We tested the same test

More information

1st-session key

1st-session key 1 2013/11/29 Project based Learning: Soccer Agent Program 1 2012/12/9 Project based Learning: Soccer Agent Program PBL Learning by doing Schedule 1,2 2013 11/29 Make 2013 12/6 2013 12/13 2013 12/20 2014

More information

80 X 1, X 2,, X n ( λ ) λ P(X = x) = f (x; λ) = λx e λ, x = 0, 1, 2, x! l(λ) = n f (x i ; λ) = i=1 i=1 n λ x i e λ i=1 x i! = λ n i=1 x i e nλ n i=1 x

80 X 1, X 2,, X n ( λ ) λ P(X = x) = f (x; λ) = λx e λ, x = 0, 1, 2, x! l(λ) = n f (x i ; λ) = i=1 i=1 n λ x i e λ i=1 x i! = λ n i=1 x i e nλ n i=1 x 80 X 1, X 2,, X n ( λ ) λ P(X = x) = f (x; λ) = λx e λ, x = 0, 1, 2, x! l(λ) = n f (x i ; λ) = n λ x i e λ x i! = λ n x i e nλ n x i! n n log l(λ) = log(λ) x i nλ log( x i!) log l(λ) λ = 1 λ n x i n =

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

n 第1章 章立ての部分は、書式(PC入門大見出し)を使います

n 第1章 章立ての部分は、書式(PC入門大見出し)を使います FORTRAN FORTRAN FORTRAN ) DO DO IF IF FORTRAN FORTRAN(FORmula TRANslator)1956 IBM FORTRAN IV FORTRAN77 Fortran90 FORTRAN77 FORTRAN FORTARN IF, DO C UNIX FORTRAN PASCAL COBOL PL/I BASIC Lisp PROLOG Lisp

More information

Microsoft Word - PCM TL-Ed.4.4(特定電気用品適合性検査申込のご案内)

Microsoft Word - PCM TL-Ed.4.4(特定電気用品適合性検査申込のご案内) (2017.04 29 36 234 9 1 1. (1) 3 (2) 9 1 2 2. (1) 9 1 1 2 1 2 (2) 1 2 ( PSE-RE-101/205/306/405 2 PSE-RE-201 PSE-RE-301 PSE-RE-401 PSE-RE-302 PSE-RE-202 PSE-RE-303 PSE-RE-402 PSE-RE-203 PSE-RE-304 PSE-RE-403

More information

2011 D Pascal CASL II ( ) Pascal C 3. A A Pascal TA TA enshu-

2011 D Pascal CASL II ( ) Pascal C 3. A A Pascal TA TA enshu- 2011 D 1 1.1 1.2 Pascal CASL II ( ) Pascal 1. 2011 10 6 2011 2 9 15 2. C 3. A A 2 1 2 Pascal 1.3 1. 2. TA enshud@fenrir.ics.es.osaka-u.ac.jp TA enshu-d@fenrir.ics.es.osaka-u.ac.jp higo@ist.osaka-u.ac.jp

More information

ScanFront 220/220P 取扱説明書

ScanFront 220/220P 取扱説明書 libtiff Copyright (c) 1988-1996 Sam Leffler Copyright (c) 1991-1996 Silicon Graphics, Inc. Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby

More information

ScanFront 220/220P セットアップガイド

ScanFront 220/220P セットアップガイド libtiff Copyright (c) 1988-1996 Sam Leffler Copyright (c) 1991-1996 Silicon Graphics, Inc. Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby

More information

26 2012.09 2 2.1 1 1. 2. 3. 3 2 SPA H&M ZARA ZARA 2 1 24 72 ZARA DHL Door-to-door 2

26 2012.09 2 2.1 1 1. 2. 3. 3 2 SPA H&M ZARA ZARA 2 1 24 72 ZARA DHL Door-to-door 2 Fast Fashion and Consumption Behavior of Young People HOSODA Sakie Fast fashion has attracted attention in recent years in the fashion industry. Fashion is a global company in the field of foreign SPA

More information

グラフ数値読み取りシステム (GSYS2.4) 利用の手引

グラフ数値読み取りシステム (GSYS2.4) 利用の手引 (GSYS2.4) GSYS2.4 Manual SUZUKI Ryusuke Hokkaido University Hospital 2011 6 7 Abstract GSYS2.4 is an update version of GSYS version 2. Main features added in this version are Magnifying glass function,

More information

. (.8.). t + t m ü(t + t) + c u(t + t) + k u(t + t) = f(t + t) () m ü f. () c u k u t + t u Taylor t 3 u(t + t) = u(t) + t! u(t) + ( t)! = u(t) + t u(

. (.8.). t + t m ü(t + t) + c u(t + t) + k u(t + t) = f(t + t) () m ü f. () c u k u t + t u Taylor t 3 u(t + t) = u(t) + t! u(t) + ( t)! = u(t) + t u( 3 8. (.8.)............................................................................................3.............................................4 Nermark β..........................................

More information

CLUSTERPRO ファイルサーバ監視オプション編

CLUSTERPRO ファイルサーバ監視オプション編 CLUSTERPRO SE for Linux Ver3.0 2004.03.31 1 1 2004/03/31 2 CLUSTERPRO for Linux R2.0 CLUSTERPRO Linux Linus Torvalds URL NEC http://soreike.wsd.mt.nec.co.jp/ [ ][ ][CLUSTERPRO ] NEC http://www.ace.comp.nec.co.jp/clusterpro/

More information

ABSTRACT The "After War Phenomena" of the Japanese Literature after the War: Has It Really Come to an End? When we consider past theses concerning criticism and arguments about the theme of "Japanese Literature

More information

新・明解C言語で学ぶアルゴリズムとデータ構造

新・明解C言語で学ぶアルゴリズムとデータ構造 第 1 章 基本的 1 n 141 1-1 三値 最大値 algorithm List 1-1 a, b, c max /* */ #include int main(void) { int a, b, c; int max; /* */ List 1-1 printf("\n"); printf("a"); scanf("%d", &a); printf("b"); scanf("%d",

More information

PBASIC 2.5 PBASIC 2.5 $PBASIC directive PIN type New DEBUG control characters DEBUGIN Line continuation for comma-delimited lists IF THEN ELSE * SELEC

PBASIC 2.5 PBASIC 2.5 $PBASIC directive PIN type New DEBUG control characters DEBUGIN Line continuation for comma-delimited lists IF THEN ELSE * SELEC PBASIC 2.5 PBASIC 2.5 BASIC Stamp Editor / Development System Version 2.0 Beta Release 2 2.0 PBASIC BASIC StampR PBASIC PBASIC PBASIC 2.5 Parallax, Inc. PBASIC 2.5 PBASIC 2.5 support@microbot-ed.com 1

More information

1 2 3

1 2 3 INFORMATION FOR THE USER DRILL SELECTION CHART CARBIDE DRILLS NEXUS DRILLS DIAMOND DRILLS VP-GOLD DRILLS TDXL DRILLS EX-GOLD DRILLS V-GOLD DRILLS STEEL FRAME DRILLS HARD DRILLS V-SELECT DRILLS SPECIAL

More information

Copyright Oracle Parkway, Redwood City, CA U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated softw

Copyright Oracle Parkway, Redwood City, CA U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated softw Oracle Solaris Studio 12.3 Part No: E26466 2011 12 Copyright 2011 500 Oracle Parkway, Redwood City, CA 94065 U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software,

More information

TH-47LFX60 / TH-47LFX6N

TH-47LFX60 / TH-47LFX6N TH-47LFX60J TH-47LFX6NJ 1 2 3 4 - + - + DVI-D IN PC IN SERIAL IN AUDIO IN (DVI-D / PC) LAN, DIGITAL LINK AV IN AUDIO OUT 1 11 2 12 3 13 4 14 5 6 15 7 16 8 17 9 18 10 19 19 3 1 18 4 2 HDMI AV OUT

More information

評論・社会科学 84号(よこ)(P)/3.金子

評論・社会科学 84号(よこ)(P)/3.金子 1 1 1 23 2 3 3 4 3 5 CP 1 CP 3 1 1 6 2 CP OS Windows Mac Mac Windows SafariWindows Internet Explorer 3 1 1 CP 2 2. 1 1CP MacProMacOS 10.4.7. 9177 J/A 20 2 Epson GT X 900 Canon ip 4300 Fujifilm FinePix

More information

TOPLON PRIO操作手順

TOPLON PRIO操作手順 TOPLON PRIO 2004/05/24 I/O LON WAGO TOPLON PRIO 1. 1) PCC-10 S/W 2) PC 3) PCC-10 4) Windows Lon WorksR Plug n Play Apply OK 5) Visio LonMaker LonPoint 6) TOPLON PRIO 2. IO-PRO SYM TOPLON-PRIO SNVT NVI

More information

ProVAL Recent Projects, ProVAL Online 3 Recent Projects ProVAL Online Show Online Content on the Start Page Page 13

ProVAL Recent Projects, ProVAL Online 3 Recent Projects ProVAL Online Show Online Content on the Start Page Page 13 ProVAL Unit System Enable Recording Log Preferred Language Default File Type Default Project Path ProVAL : Unit SystemUse SI Units SI SI USCS Enable Recording Log Language Default File Type Default Project

More information

Technische Beschreibung P82R SMD

Technische Beschreibung P82R SMD P26 halstrup-walcher GmbH http://www.krone.co.jp/ Stegener Straße 10 D-79199 Kirchzarten, Germany 124-0023 2-22-1 TEL:03-3695-5431 FAX:03-3695-5698 E-MAIL:sales-tokyo@krone.co.jp 530-0054 2-2-9F TEL:06-6361-4831

More information

¥Ñ¥Ã¥±¡¼¥¸ Rhpc ¤Î¾õ¶·

¥Ñ¥Ã¥±¡¼¥¸ Rhpc ¤Î¾õ¶· Rhpc COM-ONE 2015 R 27 12 5 1 / 29 1 2 Rhpc 3 forign MPI 4 Windows 5 2 / 29 1 2 Rhpc 3 forign MPI 4 Windows 5 3 / 29 Rhpc, R HPC Rhpc, ( ), snow..., Rhpc worker call Rhpc lapply 4 / 29 1 2 Rhpc 3 forign

More information

1 # include < stdio.h> 2 # include < string.h> 3 4 int main (){ 5 char str [222]; 6 scanf ("%s", str ); 7 int n= strlen ( str ); 8 for ( int i=n -2; i

1 # include < stdio.h> 2 # include < string.h> 3 4 int main (){ 5 char str [222]; 6 scanf (%s, str ); 7 int n= strlen ( str ); 8 for ( int i=n -2; i ABC066 / ARC077 writer: nuip 2017 7 1 For International Readers: English editorial starts from page 8. A : ringring a + b b + c a + c a, b, c a + b + c 1 # include < stdio.h> 2 3 int main (){ 4 int a,

More information

OS Windows Mac OS Windows Mac OS Windows XP Mac OS X OS Windows 95 Mac OS

OS Windows Mac OS Windows Mac OS Windows XP Mac OS X OS Windows 95 Mac OS About use of the Chinese character which is not in a computer Reuse and sharing of data by the large-scale character set and the Macro program HUKUDA Sinobu 1 125000 800 JIS 2 2000 3 1 488 545 2 JIS X

More information

4 1 2 34 56 1

4 1 2 34 56 1 2016 8 2 2 4 1 2 34 56 1 3 2 4 2 78 910 2 1 3 10,000 A 100 A 9,900 9,900 A 100 100 POINT! 4 2 2 2 5 2100 100 3 50 5050100 POINT! 6 3 2 7 ABC 2 10010,0001100 2 100 2 5,000 1 50 32 16,000 13,000 10,000 7,000

More information

橡挿入法の実践

橡挿入法の実践 PAGE:1 7JFC1121 PAGE:2 7JFC1121 PAGE:3 7JFC1121 Kadai_1.pas program input_file;{7jfc1121 19 20 { type item = record id : integer; math : integer; english : integer; var wfile data flag id_no filename :

More information

解きながら学ぶC言語

解きながら学ぶC言語 printf 2-5 37 52 537 52 printf("%d\n", 5 + 37); 5370 source program source file.c ex00.c 0 comment %d d 0 decimal -2 -p.6 3-2 5 37 5 37-22 537 537-22 printf("537%d\n", 5-37); function function call ( )argument,

More information

: gettoken(1) module P = Printf exception End_of_system (* *) let _ISTREAM = ref stdin let ch = ref ( ) let read () = (let c =!ch in ch := inp

: gettoken(1) module P = Printf exception End_of_system (* *) let _ISTREAM = ref stdin let ch = ref ( ) let read () = (let c =!ch in ch := inp 7 OCaml () 1. 2. () (compiler) (interpreter) 2 OCaml (syntax) (BNF,backus normal form ) 1 + 2; let x be 2-1 in x; ::= ; let be in ; ::= + - ::= * / ::= 7.1 ( (printable characters) (tokens) 1 (lexical

More information

2005 D Pascal CASL ( ) Pascal C 3. A A Pascal TA TA TA

2005 D Pascal CASL ( ) Pascal C 3. A A Pascal TA TA TA 2005 D 1 1.1 1.2 Pascal CASL ( ) Pascal 1. 2005 10 13 2006 1 19 12 2. C 3. A A 2 1 2 Pascal 1.3 1. 2. TA TA TA sdate@ist.osaka-u.ac.jp nakamoto@image.med.osaka-u.ac.jp h-kido@ist.osaka-u.ac.jp m-nakata@ist.osaka-u.ac.jp

More information

120802_MPI.ppt

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

More information