Login Basic Linux for Prolog PC W.Dog Linux Enter ccycs09 ccycs09 Enter Enter Linux 2

Size: px
Start display at page:

Download "Login Basic Linux for Prolog PC W.Dog Linux Enter ccycs09 ccycs09 Enter Enter Linux 2"

Transcription

1 Contents Basic Linux for Prolog(Linux ) Login 2 Logout 3 Kterm 4 Prolog Technical Terms Prolog Fact 7 Database 8 Question 9 Match 10 Syntax 11 Clause 12 Character 13 Constant 14 Variable 15 Argument 17 Predicate 18 List 19 Backtracking 21 Recursive 23 Conjunction 24 Built-in predicate 25 Introduction to Prolog Prolog 1997 UNIX Linux Basic Linux for Prolog Linux Prolog Technical Terms Prolog UNIX LINUX 1

2 Login Basic Linux for Prolog PC W.Dog Linux Enter ccycs09 ccycs09 Enter Enter Linux 2

3 Logout Enter 3

4 kterm ( ) Kterm x003ac@ccycs09 $ ], $ (command) YAPProlog yap kterm Prolog Prolog gedit 4

5 Linux DIRECTORIES ls ls x X pwd cd cd x x ls mkdir x x FILES cat x x page x x more x x mv x y cp x y rm x x head x x 10 head -n x x n tail x 10 tail -n x n grep x y y x COMMUNICATION lp -d PRINTER x x PRINTER mail mail x x(login@address) talk x x(login@address) PROGRAMS gedit yap Edinburgh Prolog sicstus SICS Prolog sicstus -l x x SICS Prolog 5

6 COMMANDS INPUT / OUTPUT X Y X y X Y y X X Y x y FOR CONVENIENCE / FILE NAMES? PREVIOUS COMMANDS!!!x x COMMAND LINE EDITING ctrl + b, ctrl + f, ctrl + p, 1 ctrl + n, 1 ctrl + d tab BS 1 ctrl + d x003ac@ccycs09 $ pwd export/st8/x003ac/ x003ac@ccycs09 $ cd d ctlr+d database/ x003ac@ccycs09 $ cd database/ tab x003ac@ccycs09 $ pwd export/st8/x003ac/database x003ac@ccycs09 $ 6

7 Fact: Prolog Technical Terms Prolog 1)Sazae likes Masuo. 2)Masao likes Sazae. 1),2) Prolog [like ] 1. likes(sazae,masuo). 2. likes(masuo,sazae)

8 Database Prolog [sazae] father(tarao,masuo). father(sazae,namihei). father(katsuo,namihei). father(wakame,namihei). mother(tarao,sazae). mother(sazae,fune). mother(katsuo,fune). mother(wakame,fune). Database 8

9 Question: like Prolog $ yap Restoring fail /user/local/bin/yap YAP version Yap4.2.0 yes?- like. consulting like... like consulted 112 bytes in 0.0 seconds?- like(sazae,x). X= masuo? Prolog Prolog filename. consult(filename). consult file2,file2,file3. file1, file2, file3. 9

10 Match Prolog sazae $ yap Restoring fail /user/local/bin/yap YAP version Yap4.2.0 yes?- sazae. consulting sazae... sazae consulted 368 bytes in 0.0 seconds?- father(tarao,masuo). yes?- father(tarao,x). X= masuo? ;?- father(x,masuo). X=tarao? ;?- father(masuo,x).?- [sazae] father(tarao,masuo). 4 Prolog No match in the date base. 10

11 Syntax sazae father(tarao,masuo). tarao masuo father Prolog ( a b). { term = predicate +(+argument +) (unit)clause., predicate () arguments. clause 11

12 Clause sister(x,y) :- father(x,f),father(y,f). head( ) body( ) head( ) body( ) head( ) body( ) :- clause( ) :- if ex) Go if it is fine. go :- fine(x). (rule) 1 (scope) ex) flower(x):-tulip(x). pretty(x):-tulip(x).?-mother(tarao,mum),mother(mum,granny). 12

13 Character Prolog (Upper case letters) ABCDEFGHIJKLM NOPQRSTUVWXYZ (Lower case letters) abcdefghijklm pqrstuvwxyz (Figure) (Symbol) / \ ˆ = ;.? $&#! 13

14 Constant (atom) { sazae tarao wakame katsuo father mother ;? : (number : Anything that begins with a figure) x003ac@ccycs09 $ yap Restoring fail /user/local/bin/yap YAP version Yap4.2.0 yes?- X=3x. syntax error X=3x ====HERE====.?- X = 3x. syntax error X=3x ====HERE====.?- Y = 3. Y=3;?- Z = 3.1.?- A = 0.1. A = 0.1 ;?- B =.1. syntax erorr B=. ====HERE==== 1.?- C = syntax erorr C = 1.2. ====HERE==== 3.?- Z = 3.1 ; 14

15 Variable Prolog arguments match $ yap Restoring fail /user/local/bin/yap YAP version Yap4.2.0 yes?- X = human(sazae). X = human(sazae) ;?- A = a. A=a;?- B = 120. B = 120 ;?- C = 0.5. C = 0.5 ;?- D = past(in(meet(john,mary),tokyo)). D = past(in(meet(john,mary),tokyo)) ;?- 15

16 clause( ) argument anymous variable( ) anymous ( ) anymous variable chat80( ) country(c) :- country(c,,,,,,,,, ). in0(x,y) :- country(x,y,,,,,,,, ). latitude(c,l degrees) :- country(c,,l,,,,,,, ). longitude(c,l degrees) :- country(c,,l,,,,,,, ). area(c,a ksqmiles) :- country(c,,,,a,,,,, ). population(c,p million) :- country(c,,,,,,p,,, ). capital(c,cap) :- country(c,,,,,,,,cap, ). country(afghanistan,indian subcontinent,33,-65,254,861,18,290,kabul,afghani). country(albania,southern europe,41,-20,11,100,2,350,tirana,lek). country(algeria,rth afrika,35,-11,919,951,15,770,algiers,dinar). country(angola,southern afrika,-12,-18,481,351,5,810,luanda,?). country(argentina,south america,-35,66,1072,67,23,920,bues aires,peso). 16

17 Argument argument 1 2 Prolog argument family kazoku predicate family(iso,namihei,hune,katsuo,wakame). kazoku(iso,namihei,hune,katsuo,wakame). 1 argument family(fuguta,masuo,sazae,tarao). kazoku(fuguta,masuo,sazae,tarao). argument 4 family/kazoku predicate fact( ) agument 2 list( ) structure( ) Prolog predicate argument 17

18 Predicate Prolog predicate( ) sonkei(sazae,namihei). sonkei 6 s(sazae,namihei). s predicate 18

19 List male(x):-boy(x). boy(katsuo). Prolog male(x). X=katsuo. X 1 Prolog (list) boy(katsuo). boy([katsuo,nakajima]). male(x). X=[katsuo,nakajima] Prolog list (list) Prolog (list) [ ] (component) head tail head tail ex) list head tail a. a a,b. a b a,b,c. a b,c [H T]. ex) (head 1 atom tail head list ) 19

20 ex) tail [] empty list empty list (see = member) x003ac@ccycs09 $ yap Restoring fail /user/local/bin/yap YAP version Yap4.2.0 yes?- X Y = a. X=a Y= ;?- X Y = a,b. X=a Y= b ;?- X Y = a,b,c. X=a Y= b,c ;?- a,b,c X = a,b,c,d,e,f,g. X= d,e,f,g ;?- Prolog?- [a,b,c X] = [a,b,c,d,e,f,g]. X = [d,e,f,g]; a,b,c (match) (List) 20

21 Backtracking Prolog match Backtracking Prolog match match ( ) (fail) (fail) Prolog ( ) Prolog Backtracking( ) [sazae] [sazae] father(tarao,masuo). father(sazae,namihei). father(katsuo,namihei). father(wakame,namihei). mother(tarao,sazae). mother(sazae,fune). mother(katsuo,fune). mother(wakame,fune). x003ac@ccycs09 $ yap Restoring fail /user/local/bin/yap YAP version Yap4.2.0 yes?- [sazae]. consulting sazae... sazae consulted 2240 bytes in 0.0 seconds yes?- father(mariko,x).?- sazae?-father(mariko,x). Backtracking father(mariko,x). Prolog father(tarao,masuo). mariko tarao (fail) father(sazae,namihei). mariko tarao (fail) 21

22 father(katsuo,namihei). father(wakame,namihei). (fail) Backtracking Backtracking sazae yes?-father(x,y). 4 X=tarao Y=masuo Backtracking ; ( ) match x003ac@ccycs09 $ yap Restoring fail /user/local/bin/yap YAP version Yap4.2.0 yes?- [sazae]. consulting sazae... sazae consulted 308 bytes in 0.0 seconds yes?- father(x,y). X = tarao Y = masuo ; X = sazae Y = namihei ; X = katsuo Y = namihei ; X = wakame Y = namihei ;?- 22

23 Recursion / in (recursive) / in(x,y):-location(x,y). in(x,y):-location(x,z),in(z,y). location(yuda,yamaguchi). location(yamaguchi,japan). yes?- in. consulting in... in consulted 272 bytes in 0.0 seconds yes?- in(x,y). X = yuda Y = yamaguchi ; X = yamaguchi Y = japan ; X = yuda Y = japan ;?- ˆ D recursive recursive( ) head( ) body( ) predicate( ) term( ) recursive left-recursive leftrecursive :- head predicate term( ) Prolog left-recursive recursive / in (left-recursive) / in(x,y):-in(x,z),(z,y). in(yuda,yamaguchi). in(yamaguchi,japan). 23

24 Conjunction sister DateBase sister Conjunction( ), ( ) term( ) A B [sazae] father(tarao,masuo). father(sazae,namihei). father(katsuo,namihei). father(wakame,namihei). mother(tarao,sazae). mother(sazae,fune). mother(katsuo,fune). mother(wakame,fune). sister(x,y):- father(x,f), father(y,f)., A and B A B 24

25 Built-in predicate is?- A=3,B=2,C is A+B. A=3 B=2 C=5; is variable( ) is predifcate( )?- Y=2,Z=8,is(X,Y Z). Y=2 Z=8 X = 16 ;?- is(x,y Z),Y=2,Z=8! Error in arithmetic expression: t a number Y,Z 25

26 Built-in predicate sazae father(tarao,masuo). father(sazae,namihei). father(katsuo,namihei). father(wakame,namihei). mother(tarao,sazae). mother(sazae,fune). mother(katsuo,fune). mother(wakame,fune). namihei yes?:- findall(x,father(x,namihei),z). X= 0 Z = [katsuo,sazae,wakame] ; findall findall term( :father(x,namihei)) term ( X) match ( Z) test test(a). test(b). test(c). test(d). father(sazae,namihei). father(katsuo,namihei). father(tarao,masuo). 26

27 findall?- findall(x,test(x),all). All = [a,c,b,a]? ;?- findall(x,test(x),all).?-?- findall(x,test(x),all). All = [sazae,katsuo,tarao]? ;?- findall(x,test(x),all). All = [namihei,namihei,masuo]? ;?- 27

28 abolish(f,n) abort arg N,T,A T N A assert(c) C atom(t) T atomic(t) T bagof(x,p,b) P B clause(p,q) P= Q= close(f) F consult(f) F display(t) T fail NO integer(t) T ( ) XisY Y= X= listing listing(p) P name(a,l) A L (A L ) nl nvar(t) T number(t) T read(t) T reconsult(f) F repeat yes retract(c) C save(f) F see(f) F seeing(f) F seen see setof(x,p,b) P X B tell(f) F ( F ) telling(f) F told tell true 1 var(t) T write(t) T writeq(t) T Prolog 28

29 ( )! \+P P X Y X Y X= Y X Y X Y X Y X = Y X Y X=Y X Y T=..L T L X==Y X Y X\==Y X Y [F R] consult(f) + - / // assert(c,r) expand term(t,x) recorded(k,t,r) asserta(c) exists(f) recordz(k,t,r) asserta(c,r) fileerrors rename(f,g) assertz(c) functor(t,f,n) sh assertz(c,r) get(c) skip(c) break get0(c) sort(l,s) call(p) instance(r,t) spy P clause(p,q,r) keysort(=l,s) statistics compare(c,x,y) leash(m) system(s) current atom(a) debug tab(n) current functor(a,t) fileerrors trace current predicate(a,p) spy P LC db reference(t) op(p,t,a) NOLC debug primitive(t) X@ Y debugging print(t) X@= Y erase(r) prompt(a,b) X@ Y erased(r) put(c) X@ =Y expanded exprs(o,n) recorda(k,t,r) 29

GNU Emacs GNU Emacs

GNU Emacs GNU Emacs GNU Emacs 2015 10 2 1 GNU Emacs 1 1.1....................................... 1 1.2....................................... 1 1.2.1..................................... 1 1.2.2.....................................

More information

X Window System X X &

X Window System X X & 1 1 1.1 X Window System................................... 1 1.2 X......................................... 1 1.3 X &................................ 1 1.3.1 X.......................... 1 1.3.2 &....................................

More information

A

A A 3 2017 4 24 1 1 1.1.......................................... 1 1.2................................ 1 1.2.1................................ 1 1.2.2............................. 1 1.2.3................................

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

UNIX

UNIX 2000 1 UNIX 2000 4 14 1 UNIX? 2 1.1 UNIX OS....................................... 2 1.2.................................................... 2 1.3 UNIX...................................... 2 1.4 Windows

More information

Windows Cygwin Mac *1 Emacs Ruby ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2

Windows Cygwin Mac *1 Emacs Ruby ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2 September 2016 1 Windows Cygwin Mac *1 Emacs Ruby 1 1.1 ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2 ~/16:00:20> ls 2 2 ls ls -a ~/16:00:20> ls -a

More information

unix.dvi

unix.dvi 1 UNIX 1999 4 27 1 UNIX? 2 1.1 Windows/Macintosh? : : : : : : : : : : : : : : : : : : : : : : : : 2 1.2 UNIX OS : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : 2 1.3 : : : : : : : : : : : :

More information

4 2018 5 1 1 1 1.1.............................. 1 1.1.1....................... 1 1.1.2.................... 1 1.2...................... 1 1.2.1........................... 1 1.2.2............................

More information

untitled

untitled osamu@sfc.keio.ac.jp OK CNS OS CPU HDD FDD USB 1 (CPU) (CPU) CISCPentium4(Windows PC) RISCPowerPC(Macintosh PC) CPU CPU CPU CPU CD/DVD OS 2 OS Windows MacOS ( Talk, MacOSX) UNIX Word/Excel/PowerPoint etc..

More information

tebiki00.dvi

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

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

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

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

More information

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

LAN Copyright c Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License

LAN Copyright c Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License LAN 2014 3 19 Copyright c 1993 2014 Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License. 1 2 1.1................................... 2 1.2.........................

More information

2

2 2 3 Page 4 5 6 A-1B-1 C0 D0 E0 F0 G0 A0 B0 C1 D1 E1 F1 G1 A1 B1 C2 D2 E2 F2 G2 A2 B2 C3 D3 E3 7 F3 G3 A3 B3 C4 D4 E4 F4 G4 A4 B4 C5 D5 E5 F5 G5 A5 B5 C6 D6 E6 F6 G6 A6 B6 C7 8 Page 9 1 2 3 1 2 10 1 11

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

UNIX

UNIX 2000 2 UNIX 2000 4 24 1 3 1.1 : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : 3 1.2 : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : :

More information

情報処理概論(第二日目)

情報処理概論(第二日目) 実習資料 Linux 入門講習会 九州大学情報基盤研究開発センター 注意 : この内容は wisdom.cc.kyushu-u.ac.jp の任意の ID で利用できますが, ファイルの削除等を含んでいるので各コマンドの意味を理解するまでは講習会用 ID で利用することをお勧めします. 1 実習 1 ログイン ファイル操作 ディレクトリの作成 ファイルの移動, コピー, 削除 ログアウト 2 ログイン

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

273? C

273? C TSG Theoretical Science Group 273? C 2-1.................................. 2 -1. Windows Mac Mac UNIX CUI bash >_ Finder TSG No.273? 2 3 pwd ls cd ( ) change directory 3 TSG No.273? cd hoge cd hoge cd....../

More information

r03.dvi

r03.dvi 19 ( ) 019.4.0 CS 1 (comand line arguments) Unix./a.out aa bbb ccc ( ) C main void... argc argv argc ( ) argv (C char ) ( 1) argc 4 argv NULL. / a. o u t \0 a a \0 b b b \0 c c c \0 1: // argdemo1.c ---

More information

ohp03.dvi

ohp03.dvi 19 3 ( ) 2019.4.20 CS 1 (comand line arguments) Unix./a.out aa bbb ccc ( ) C main void int main(int argc, char *argv[]) {... 2 (2) argc argv argc ( ) argv (C char ) ( 1) argc 4 argv NULL. / a. o u t \0

More information

bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows ˆ Windows10 64bit Wi

bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows ˆ Windows10 64bit Wi Windows bash on Ubuntu on Windows [Windows Creators Update(1703) ] TAKE 2017-10-06 bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu

More information

programmingII2019-v01

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

More information

UNIX version Copyright c Daikoku Manabu 1 UNIX 1.1 UNIX UNIX UNIX OS Windows UNIX UNIX UN

UNIX version Copyright c Daikoku Manabu   1 UNIX 1.1 UNIX UNIX UNIX OS Windows UNIX UNIX UN UNIX version 1.04 2002 7 25 Copyright c 2001 2002 Daikoku Manabu http://www.gin.or.jp/users/daikoku/ 1 UNIX 1.1 UNIX UNIX UNIX OS Windows UNIX UNIX UNIX AIX HP UX Solaris Linux FreeBSD MacOS X Linux UNIX

More information

RT300/140/105シリーズ 取扱説明書

RT300/140/105シリーズ 取扱説明書 REMOTE & BROADBAND ROUTER RT300i/RT140p/RT140f/RT140i RT140e/RT105p/RT105i/RT105e 2 3 4 5 6 7 8 9 10 Bold face Enter Ctrl Tab BS Del Console RT105i RT300i RT140p RT140f RT140i RT140e RT105p RT105i RT105e

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

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

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

/ SCHEDULE /06/07(Tue) / Basic of Programming /06/09(Thu) / Fundamental structures /06/14(Tue) / Memory Management /06/1

/ SCHEDULE /06/07(Tue) / Basic of Programming /06/09(Thu) / Fundamental structures /06/14(Tue) / Memory Management /06/1 I117 II I117 PROGRAMMING PRACTICE II 2 MEMORY MANAGEMENT 2 Research Center for Advanced Computing Infrastructure (RCACI) / Yasuhiro Ohara yasu@jaist.ac.jp / SCHEDULE 1. 2011/06/07(Tue) / Basic of Programming

More information

140 120 100 80 60 40 20 0 115 107 102 99 95 97 95 97 98 100 64 72 37 60 50 53 50 36 32 18 H18 H19 H20 H21 H22 H23 H24 H25 H26 H27 1 100 () 80 60 40 20 0 1 19 16 10 11 6 8 9 5 10 35 76 83 73 68 46 44 H11

More information

I #2 : ( 8-13), () URL : j inoue/prog2007/prog2007.html

I #2 : ( 8-13), () URL :  j inoue/prog2007/prog2007.html Title 計算機プログラミング I 同演習講義ノート 2007 Author(s) 井上, 純一 Citation Issue Date 2007-08-22T04:23:05Z DOI Doc URLhttp://hdl.handle.net/2115/28047 Right Type learningobject Additional There are other files related

More information

13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software Nspire Nspire Nspir

13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software Nspire Nspire Nspir 13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software 37.1 37.1 Nspire Nspire Nspire 37.1: Student Software 13 2 13 Student Software esc

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

1.... 1 2.... 1 2.1. RATS... 1 2.1.1. expat... 1 2.1.2. expat... 1 2.1.3. expat... 2 2.2. RATS... 2 2.2.1. RATS... 2 2.2.2.... 3 3. RATS... 4 3.1.... 4 3.2.... 4 3.3.... 6 3.3.1.... 6 3.3.2.... 6 3.3.3....

More information

2 1,384,000 2,000,000 1,296,211 1,793,925 38,000 54,500 27,804 43,187 41,000 60,000 31,776 49,017 8,781 18,663 25,000 35,300 3 4 5 6 1,296,211 1,793,925 27,804 43,187 1,275,648 1,753,306 29,387 43,025

More information

2009 1. 2. 3. 4. 5. 2 2009 CONTENTS 4 6 8 TOPIC 01 10 TOPIC 02 11 TOPIC 03 12 TOPIC 04 14 TOPIC 05 15 TOPIC 06 15 TOPIC 07 16 18 18 19 20 21 22 22 22 23 24 25 26 27 27 27 28 29 30 TOPIC 08 16 TOPIC 09

More information

160420c_unix.pptx

160420c_unix.pptx 出席の確認のため pi にログインして待つこと ちなみに演習室外からリモートログインしてもダメ ターミナルは 2 つ開いておくと便利 UNIX の復習 陰山聡計算科学演習 A1 第 2 回講義資料 本資料のオリジナルは関和弘先生 中村匡秀先生 臼井英之先生によって作成されました. 今日やること UNIX の基礎 ディレクトリ コマンド 環境変数 シェルスクリプト 今さら UNIX? という人は まずは今日の課題

More information

情報処理概論(第二日目)

情報処理概論(第二日目) 実習資料 Linux 入門講習会 九州大学情報基盤研究開発センター 注意 : この内容は najima.cc.kyushu-u.ac.jp の任意の ID で利用できますが, ファイルの削除等を含んでいるので各コマンドの意味を理解するまでは講習会用 ID で利用することをお勧めします. 1 実習 1 ログイン ファイル操作 ディレクトリの作成 ファイルの移動, コピー, 削除 ログアウト 2 ログイン

More information

¥×¥í¥°¥é¥ß¥ó¥°±é½¬I Exercise on Programming I [1zh] ` `%%%`#`&12_`__~~~ alse

¥×¥í¥°¥é¥ß¥ó¥°±é½¬I  Exercise on Programming I [1zh] ` `%%%`#`&12_`__~~~alse I Exercise on Programming I http://bit.ly/oitprog1 1, 2 of 14 ( RD S ) I 1, 2 of 14 1 / 44 Ruby Ruby ( RD S ) I 1, 2 of 14 2 / 44 7 5 9 2 9 3 3 2 6 5 1 3 2 5 6 4 7 8 4 5 2 7 9 6 4 7 1 3 ( RD S ) I 1, 2

More information

11夏特集号初校.indd

11夏特集号初校.indd 1 2 3 5 50 40 7 6 3 ABC 3 5 A 5% B C 100 3 1 2 3 A 5% 5% 5% B 10% 5% 0% C 20% 10% 15% A 15.8% 15.0% 0.8% B 15.5% 15.0% 0.5% C 12.2% 15.0% 2.8% 2,000 1,500 1,000 500 0 10% 5% 3% 1% 01 5 10 15 20 25 30

More information

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

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

More information

a0postercls? Gerlinde Kettl, Matthias Weiser T E Xmacro wwwctanorg/tex-archive/macros/latex/contrib/a0poster LAT E X

a0postercls? Gerlinde Kettl, Matthias Weiser T E Xmacro wwwctanorg/tex-archive/macros/latex/contrib/a0poster LAT E X a0postercls, http://wwwmathkobe-uacjp/a0poster ( ) ( ): orange (Debian/GNU Linux, Etch) ssh -X orange pdf :, - pdf ( ) orange / tex a0postercls? Gerlinde Kettl, Matthias Weiser T E Xmacro wwwctanorg/tex-archive/macros/latex/contrib/a0poster

More information

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

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

More information

RT300i/RT140x/RT105i 取扱説明書

RT300i/RT140x/RT105i 取扱説明書 2 3 4 5 6 7 8 9 10 Bold face Enter Ctrl Tab BS Del Typewriter face RT105i RT300i RT140p RT140f RT140i RT140e RT105i RT300i 11 RARP 9600 bit/s 8 http://www.rtpro.yamaha.co.jp/ ftp.rtpro.yamaha.co.jp 12

More information

1

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

More information

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

<4D F736F F F696E74202D E3F FC96E55F F554E CC8AEE D8EAF2E B8CDD8AB B83685D>

<4D F736F F F696E74202D E3F FC96E55F F554E CC8AEE D8EAF2E B8CDD8AB B83685D> 大規模計算機システム利用講習会スーパーコンピュータ利用入門 大阪大学サイバーメディアセンター大規模計算研究部門吉野元 yoshino@cmc.osaka-u.ac.jp 参考資料 大規模計算機システム利用講習会スーパーコンピュータ利用入門 (2013 年 9 月 10 日 ) 大阪大学サイバーメディアセンター大阪大学情報推進部情報基盤課研究系システム班 パソコン& スーパーコンピュータで計算するための基礎知識

More information

owners.book

owners.book Network Equipment RTX1200 RTX800 2 3 4 5 6 7 8 9 10 bold face Enter Ctrl Tab BS Del Ctrl X Ctrl X Regular face 11 12 13 14 RTX1200 RTX1200 RTX1200 15 16 ), -. / 1 4 5 6 17 18 19 20 21 console character

More information

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

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

More information

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

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

More information

情報処理概論(第二日目)

情報処理概論(第二日目) 実習資料 Linux 入門講習会 九州大学情報基盤研究開発センター 注意 : この内容は najima.cc.kyushu-u.ac.jp の任意の ID で利用できますが, ファイルの削除等を含んでいるので各コマンドの意味を理解するまでは講習会用 ID で利用することをお勧めします. 1 実習 1 ログイン ファイル操作 ディレクトリの作成 ファイルの移動, コピー, 削除 ログアウト 2 ログイン

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

170420_unix.pptx

170420_unix.pptx 出席の確認のため演習時間中はずっと pi-computer にログインしておくこと pi-computer への ssh ターミナルは同時に複数開いておくと便利です UNIX の復習 陰山聡計算科学演習 A1 第 2 回講義資料 本資料のオリジナルは関和弘先生 中村匡秀先生 臼井英之先生によって作成されました. 今日やること UNIX の基礎 ディレクトリ コマンド 環境変数 シェルスクリプト 今さら

More information

25 2 15 4 1 1 2 1 2.1............................. 1 2.2............................... 2 2.3.................... 5 2.4..................... 6 3 6 3.1.................................... 6 3.2..........................

More information

練習 4 ディレクトリにあるファイルを直接指定する (cat) cat コマンドを使う (% cat ファイル名 ) と ファイルの内容を表示できた ファイル名のところにパス名を使い ディレクトリ名 / ファイル名 のように指定すると ディレクトリ内にあるファイルを直接指定できる 1 % cat _

練習 4 ディレクトリにあるファイルを直接指定する (cat) cat コマンドを使う (% cat ファイル名 ) と ファイルの内容を表示できた ファイル名のところにパス名を使い ディレクトリ名 / ファイル名 のように指定すると ディレクトリ内にあるファイルを直接指定できる 1 % cat _ UNIX 入門 4 ディレクトリ操作に関するコマンドと実習以下の実習を実施しなさい ファイル aaa は 先の実習で % date _ > _ aaa の命令で作成したファイルである aaa がホームディレクトリにない場合には事前に作成しておくこと 方法がわからない者は TA に聞きなさい なお 本日の練習は上から順に実施する必要がある 前の練習が正しく行われていないと 次の練習がうまくできない場合がある

More information

Microsoft PowerPoint - スハ?コン利用入門_ _UNIX利用の基礎知識.pptx

Microsoft PowerPoint - スハ?コン利用入門_ _UNIX利用の基礎知識.pptx 大規模計算機システム利用講習会スーパーコンピュータ利用入門 大阪大学サイバーメディアセンター大阪大学情報推進部情報基盤課研究系システム班 目 次 UNIX 環境を利用するための基礎知識 エディタ Emacs の基本的な使い方 2014 年 6 月 9 日大規模計算機システム利用講習会 2 UNIX 環境を利用するための基礎知識 2014 年 6 月 9 日大規模計算機システム利用講習会 3 UNIX

More information

情報の分析 1. Linux ツールの活用

情報の分析 1. Linux ツールの活用 1. Linux Chris Plaintail June 16, 2016 1 / 39 1 Cygwin Cygwin 2 3 4 Cygwin 5 2 / 39 Uinux Unix OS Micorsoft Windows Cygwin Cygwin 3 / 39 Cygwin 4 / 39 Cygwin...is it? a large collection of GNU and Open

More information

04年度LS民法Ⅰ教材改訂版.PDF

04年度LS民法Ⅰ教材改訂版.PDF ?? A AB A B C AB A B A B A B A A B A 98 A B A B A B A B B A A B AB AB A B A BB A B A B A B A B A B A AB A B B A B AB A A C AB A C A A B A B B A B A B B A B A B B A B A B A B A B A B A B A B

More information

Microsoft Word - C.....u.K...doc

Microsoft Word - C.....u.K...doc C uwêííôöðöõ Ð C ÔÖÐÖÕ ÐÊÉÌÊ C ÔÖÐÖÕÊ C ÔÖÐÖÕÊ Ç Ê Æ ~ if eíè ~ for ÒÑÒ ÌÆÊÉÉÊ ~ switch ÉeÍÈ ~ while ÒÑÒ ÊÍÍÔÖÐÖÕÊ ~ 1 C ÔÖÐÖÕ ÐÊÉÌÊ uê~ ÏÒÏÑ Ð ÓÏÖ CUI Ô ÑÊ ÏÒÏÑ ÔÖÐÖÕÎ d ÈÍÉÇÊ ÆÒ Ö ÒÐÑÒ ÊÔÎÏÖÎ d ÉÇÍÊ

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

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

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

More information

cpall.dvi

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

More information

「消える」金融、「創る」金融-2010年のリテール金融

「消える」金融、「創る」金融-2010年のリテール金融 2010 2010 CONTENTS 1 2 3 4 18 20066 1 2 19 20 20066 3 1 12 21 2 22 20066 3 4 23 1 1997 1997 1984 1893 1983 1980 2001 1990 1990 24 20066 1 260 26,418 213,597 239,416 1720062 25 2 3 26 20066 3 5 27 4 4 44

More information

org/ghc/ Windows Linux RPM 3.2 GHCi GHC gcc javac ghc GHCi(ghci) GHCi Prelude> GHCi :load file :l file :also file :a file :reload :r :type expr :t exp

org/ghc/ Windows Linux RPM 3.2 GHCi GHC gcc javac ghc GHCi(ghci) GHCi Prelude> GHCi :load file :l file :also file :a file :reload :r :type expr :t exp 3 Haskell Haskell Haskell 1. 2. 3. 4. 5. 1. 2. 3. 4. 5. 6. C Java 3.1 Haskell Haskell GHC (Glasgow Haskell Compiler 1 ) GHC Haskell GHC http://www.haskell. 1 Guarded Horn Clauses III - 1 org/ghc/ Windows

More information

C¥×¥í¥°¥é¥ß¥ó¥° ÆþÌç

C¥×¥í¥°¥é¥ß¥ó¥° ÆþÌç C (3) if else switch AND && OR (NOT)! 1 BMI BMI BMI = 10 4 [kg]) ( [cm]) 2 bmi1.c Input your height[cm]: 173.2 Enter Input your weight[kg]: 60.3 Enter Your BMI is 20.1. 10 4 = 10000.0 1 BMI BMI BMI = 10

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

1 1 2 1 3 1 4 2 4.1 AKB............................................... 2 4.2......................................... 6 4.3...........................

1 1 2 1 3 1 4 2 4.1 AKB............................................... 2 4.2......................................... 6 4.3........................... 24 3 28 : 1 1 2 1 3 1 4 2 4.1 AKB............................................... 2 4.2......................................... 6 4.3............................................. 9 5 9 5.1.........................................

More information

Emacs Ruby..

Emacs Ruby.. command line editor 27014533 2018 3 1 5 1.1................................... 5 1.2................................... 5 2 6 2.1 Emacs...................................... 6 2.2 Ruby.......................................

More information

-like BCCWJ CD-ROM CiNii NII BCCWJ BCCWJ

-like BCCWJ CD-ROM CiNii NII BCCWJ BCCWJ -like BCCWJ CD-ROM CiNii NII BCCWJ BCCWJ BCCWJ Yahoo! Yahoo! BCCWJ BCCWJ BCCWJ BOAO PS Zipper CLASSY with Oggi Precious JJ GINZA Domani Precious Oggi ViVi GINZA BCCWJ NEXTSTEP Windows XP FD ELO KIDDIES

More information

スライド 1

スライド 1 今日は Unix! Ubuntu を起動しよう Panda の VDI から接続! 出席を取るので配布した紙に 紙を 横が広い方向にこのようにおいて この方向で大きくかいてください 0.3 or 4 限目 (4/24) 1. 学生番号 2. 名前 を書いて 退出するときに 入口の近くにおいて台の上 に提出 ( 学生番号ははっきりと ) 第 3 回情報基礎演習 本日の演習内容 1. テキスト3 章および4

More information

平成12年度 計算機数学 火・1

平成12年度 計算機数学 火・1 1/8 平成 18 年度計算機数学火 1 サテライト演習室 PC 上での Linux への login PC 本体前面, ディスプレイの電源ボタンを入れる 数分間多数のメッセージが表示されるが その間はキーボードの操作を行わないこと Press Ctrl-Alt-Del の画面 が出たら指示にしたがってキーを押す 認証をおこないます画面 で アカウント名, パスワードを入力し,Vine Linux

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

PowerPoint Presentation

PowerPoint Presentation 大規模計算機システム利用講習会スーパーコンピュータ利用入門 大阪大学サイバーメディアセンター大規模計算研究部門吉野元 yoshino@cmc.osaka-u.ac.jp 参考資料 大規模計算機システム利用講習会スーパーコンピュータ利用入門 (2013 年 9 月 10 日 ) 大阪大学サイバーメディアセンター大阪大学情報推進部情報基盤課研究系システム班 2 目 次 UNIX 環境を利用するための基礎知識

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

I I / 68

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

More information

Mail_Spam_Manual_120815b

Mail_Spam_Manual_120815b server~>su - server:~#mount /mnt/cdrom server:~#umount /mnt/cdrom # cd /mnt/cdrom #./ginstall -F -M [MTA ] -P AV # wget http://download.gideon.co.jp/ginstall.tgz #./ginstall -F -M P -P AV #./ginstall -M

More information

C1-202 / F-101 originally from 2014 4 15 3 1 3 C1 2 C1-202 F 1 F-101 PC imac MacPro OS Mac OS X C WWW L A TEX 2 3 4 e-mail kyama@tut.jp C-506 6767 5 2 2.1 ID ID 2.2 2.3 2.4 2.4.1 1. imac MacPro 2. 3.

More information

Hi. Hello. My name is What s your name? Nice to meet you. How are you? I m OK. Good morning. How are you? I am fine, thank you. My name is. Nice to me

Hi. Hello. My name is What s your name? Nice to meet you. How are you? I m OK. Good morning. How are you? I am fine, thank you. My name is. Nice to me - 8 - English Day 10 Discover Japan 11 12 Hi. Hello. My name is What s your name? Nice to meet you. How are you? I m OK. Good morning. How are you? I am fine, thank you. My name is. Nice to meet you. ere

More information

第 3 回情報基礎演習 UNIX / Linux: ファイルシステム シェルを理解しよう! 谷口貴志 Panda に login し 情報基礎演習クラスの VDI から Ubuntu に接続し Linux に login した後, 左 上の Activity 端末のアイオン をクリック 端末 を立ち

第 3 回情報基礎演習 UNIX / Linux: ファイルシステム シェルを理解しよう! 谷口貴志 Panda に login し 情報基礎演習クラスの VDI から Ubuntu に接続し Linux に login した後, 左 上の Activity 端末のアイオン をクリック 端末 を立ち 第 3 回情報基礎演習 UNIX / Linux: ファイルシステム シェルを理解しよう! 谷口貴志 Panda に login し 情報基礎演習クラスの VDI から Ubuntu に接続し Linux に login した後, 左 上の Activity 端末のアイオン をクリック 端末 を立ち上げます 3 章 3.3.1-3.3.3 節,4 章 4.3.1-4.3.3 節の内容を各自で実習して下さい

More information

: : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : :

: : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : 1 2 3 4 1 1 2 1 2.1 : : : : : : : : : : : : : : : : : : : : : : : : 1 2.2 : : : : : : : : : : : : : : : : : : : 1 2.3 : : : : : : : : : : : : : : : : : : : : : : : : : : : 2 2.4 : : : : : : : : : : : :

More information

Sample Input Output for the Sample Input Sample Input Output for the Sample Input Sample Input 4-1 Output fo

Sample Input Output for the Sample Input Sample Input Output for the Sample Input Sample Input 4-1 Output fo Problem A Input: Standard Input Japan Alumni Group Summer Camp 2014 Day 4, AtCoder 15 Sep 2014 A A a b c A 60 A 60t + c ( t ) A -1 1 a b c Input 3 a, b, c a b c a, b, c 0 < a, b, c < 60 Constraints Output

More information

untitled

untitled 1 2 1 Good morning. Good afternoon. Good evening. Good night. 2 good, morning, afternoon, evening, bye, night, see, you, again 5 Hello. My name is... Nice to meet you. 10 Good morning. Good afternoon.

More information

鈴木(最終版)

鈴木(最終版) 2 4 3 Richards and Sampson (1974) 3 (language transfer) 3 Richards 1971 Overgeneralization 5 5 (2000) 6 6 7 8 9 10 10 11 14 Corder 1967 Snow(1998 Developmental error Interference error SOV SVO (1) a:

More information

Informatics 2010.key

Informatics 2010.key http://math.sci.hiroshima-u.ac.jp/ ~ryo/lectures/informatics2010/ 1 2 C ATM etc. etc. (Personal Computer) 3 4 Input Output Device Central Processing Unit I/O CPU Memory 5 6 (CPU),,... etc. C, Java, Fortran...

More information

3 4 26 1980 1 WWW 26! 3, ii 4 7!! 4 2010 8 1. 1.1... 1 1.2... 2 1.3... 3 1.4... 7 1.5... 9... 9 2. 2.1... 10 2.2... 13 2.3... 16 2.4... 18... 21 3. 3.1... 22 3.2... 24 3.3... 33... 38 iv 4. 4.1... 39 4.2...

More information

Compiled MODELSでのDFT位相検出装置のモデル化と評価

Compiled MODELSでのDFT位相検出装置のモデル化と評価 listsize TPBIG.EXE /Mingw32 ATP (Alternative Transients Program)- EMTP ATP ATP ATP ATP(TPBIG.EXE) EMTP (ATP)FORTAN77 DIMENSION C malloc listsize TACS DIMENSIONEMTP ATP(TPBIG.EXE) listsize (CPU ) RL 4040

More information

hyou1.eps

hyou1.eps CSR 2007 2007 CSR 1 Contents 3 How many? How much? 18 19 20 21 24 23 25 27 28 29 30 31 32 33 34 36 35 39 41 43 46 48 9 13 17 5 7 2 3 4 5 6 63 7 75 29,000 56 35 2002 3,949 2002 394 2002 8,343 2003 4,142

More information

TC5.ids

TC5.ids % cp ~train00/.cshrc.iris ~ % cp ~train00/.alias.all ~ % exit UNIX の基本 シェルシステムとユーザの仲立ちをするプログラムであって ユーザが入力したコマンドを解釈して実行する Unix では文法によって sh 系と csh 系がある sh 系には sh, ash, zsh, bash などがある csh 系には csh, tcsh などがある

More information

unix15-script2_09.key

unix15-script2_09.key UNIX講習会 シェルスクリプト2 31/July/2015 情報管理解析室 西出 浩世 SGE ~/unix15/sge $ cd ~/unix15/sge $ ls script* script2.sh script3.sh script4.sh ~/unix15/sge/results sam 12 $ ls results/*.sam $ rm -r results $ cp -r /usr/local/data/unix15/sge/results.

More information

Look over there. Touch your toes. OK. Please turn around. (stop, turn right, turn left, stand up, sit down, raise your right hand, put your hands down

Look over there. Touch your toes. OK. Please turn around. (stop, turn right, turn left, stand up, sit down, raise your right hand, put your hands down CD -1- Look over there. Touch your toes. OK. Please turn around. (stop, turn right, turn left, stand up, sit down, raise your right hand, put your hands down) -2- How are you? Shark Attack PC PC Town Mouse

More information

GNUPLOT GNUPLOT GNUPLOT 1 ( ) GNUPLO

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

More information

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