2 2.1 ( ) >> x=linspace(255,0,12) 2 x =

Size: px
Start display at page:

Download "2 2.1 ( ) >> x=linspace(255,0,12) 2 x ="

Transcription

1 2 2.1 ( ) >> x=linspace(255,0,12) 2 x = >> x=uint8(x) 10 x = uint >> I=reshape(x,[3 4]) 17 I = uint >> imtool(i, InitialMagnification, fit )

2 linspace ( ) float 8 (0 255) 16 reshape 3 4 (2 ) imtool InitialMagnification fit (1, 1) (2, 1) imtool MATLAB (1, 1) (2, 1), (1, 2) (width) (height) 4 3 RGB (Red, Green, Blue, RGB) 3 ( ) 2-1 ( ) 1 >> bar1=uint8(255*ones(500,100)); 2 >> bar0=zeros(500,100); 3 >> Col(:,:,1)=repmat([repmat(bar1,1,2) repmat(bar0,1,2)],1,2); 4 >> Col(:,:,2)=[repmat(bar1,1,4) repmat(bar0,1,4)]; 5 >> Col(:,:,3)=repmat([bar1 bar0],1,4);

3 >> imtool(col) MATLAB Col(:,:,1) 3 3 Col MATLAB : Col(:,:,1) C(1:end,1:end,1) MATLAB RGB 3 [255,0,0] 1 ones 2 zeros >> zeros(2) ans = >> ones(2,1) ans = 1 1 >> ones(1,2,3) ans(:,:,1) = 1 1 ans(:,:,2) = 1 1 ans(:,:,3) = repmat

4 >> x1=[1;2] 2 x1 = >> size(x1) 6 ans = >> repmat(x1,1,2) 9 ans = >> repmat(x1,2,1) 13 ans = >> repmat(x1,2,2) 19 ans = x1 2 1 repmat 1 ( ) 2 ( ) 3 8 x []

5 >> x2=[1 2; 3 4] 2 x2 = >> [x2 x2] 6 ans = >> [x2; x2] 10 ans = [] 9 ; 2.2 MATLAB 2.5 >> I=imread( peppers.png ); >> imtool(i, InitialMagnification, fit ) size 2.6 >> sz=size(i) sz = size

6 MATLAB imtool >> I=imread( peppers.png ); 2 >> hi=imtool(i, InitialMagnification, fit ); 3 >> [CI,rect]=imcrop(hI); 4 >> imtool(ci, InitialMagnification, fit ); 5 >> rect rect = >> CI2=imcrop(I,rect); 7 >> imwrite(ci, cropped_image.png ); imcrop 6 CI2 CI 7 MATLAB

7 >> C1=imread( greens.jpg ); 2 >> sz1=size(c1) sz1 = >> C2=imread( football.jpg ); 4 >> sz2=size(c2) sz2 = >> C1c=imcrop(C1,[ ]); 6 >> Cm=uint8(0.5*C1c+0.5*C2); 7 >> imtool(cm) 5 imcrop help C

8 >> v=videoreader( m4v ) 2 v = 3 VideoReader : 4 : 5 Name: m4v 6 Path: ( ) 7 Duration: CurrentTime: 0 9 Tag: 10 UserData: [] 11 : 12 Width: Height: FrameRate: BitsPerPixel: VideoFormat: RGB24 17 >> h=v.height; 18 >> w=v.width; 19 >> s=struct( cdata,zeros(h,w,3, uint8 ), colormap,[]); 20 >> k=1; 21 >> while hasframe(v) 22 s(k).cdata=readframe(v); 23 k=k+1; 24 end 25 >> implay(s) 26 >> imtool(s(1).cdata, InitialMagnification, fit ) 27 >> imtool(s(37).cdata, InitialMagnification, fit ) VideoReader (1 ) FrameRate 1 2. s h,w s MATLAB cdata colormap. cdata

9 26 2. h w RGB colormap RGB readframe VideoReader 1 hasframe 1 implay I,J I J (2.1) uint8 ( ) 2.10 >> a=uint8(10); >> b=uint8(16); >> a-b ans = uint8 0 uint8 0 I J =(I J)+(J I) (2.2) 2.3 ( )

10 >> I=imread( eight.tif ); >> imtool(i, InitialMagnification, fit ) MATLAB >> BW=zeros(size(I)); 2 >> BW(I<220)=1; 3 >> C=I; 4 >> C(BW==0)=0; 5 >> imtool(c, InitialMagnification, fit ) MATLAB

11 >> A=1:5 2 A = >> I=mod(A,2)==1 5 I = logical >> A(I) 9 ans = >> A(I)=0 12 A = A MATLAB (, true) 0(, false) I 8 I I C BW 0 0 ( ) 2-3 >> I=imread( football.jpg ); >> imtool(i, InitialMagnification, fit ) >> BW=ones(size(I,1),size(I,2)); >> BW(I(:,:,1)>11&I(:,:,1)<60& I(:,:,2)>11&I(:,:,2)<140&...

12 I(:,:,3)>15&I(:,:,3)<154)=0; >> M=repmat(BW,[1 1 3]); >> C=I; >> C(M==0)=0; >> imtool(c, InitialMagnification, fit ) 4 (r, g, b) ( ) 11 <r<60, 11 <g<140, 15 <b<154 (2.3) 6 repmat [1 1 3] 2 BW 3 3 MATLAB 2-2 MATLAB 2-4 ( ) 1 function M = creategraymask( I, R ) 2 %creatergbmask RGB 3 % M = creategraymask(i, [min max]), RGB 4 % I 1 5 % M 6

13 M=zeros(size(I,1),size(I,2)); 8 M(I(:,:,1)>R(1)&I(:,:,1)<R(2))=1; 9 end 1 M R 2 5 help imcrop 2.7 CI MATLAB max min 2.13 >> A=randi(10,[1 5]) A = >> v=max(a) v = 10 randi ( ) max 2

14 1 >> A=randi(10,[3 4]) 2 A = >> max(a) 7 ans = >> max(max(a)) 10 ans = A (0.2, 0.8), (0.5, 0.5), (0.7, 0.3)

15 V1,V m4v m4v V1,V2 fps V1 N V2 N VMix ( ) VMix=V1(1:end-N); VMix(length(V1)+1:length(V1)+length(V2)-N)=V2(N+1:end); for k=1:n VMix(length(V1)-N+k).cdata=uint8(V1(length(V1)-N+k).cdata... * + V2( ).cdata* ); end implay(vmix,fps); ( ) k k k 1 k k +1 viptraffic.avi

離散最適化基礎論 第 11回 組合せ最適化と半正定値計画法

離散最適化基礎論 第 11回  組合せ最適化と半正定値計画法 11 okamotoy@uec.ac.jp 2019 1 25 2019 1 25 10:59 ( ) (11) 2019 1 25 1 / 38 1 (10/5) 2 (1) (10/12) 3 (2) (10/19) 4 (3) (10/26) (11/2) 5 (1) (11/9) 6 (11/16) 7 (11/23) (11/30) (12/7) ( ) (11) 2019 1 25 2

More information

【知事入れ版】270804_鳥取県人口ビジョン素案

【知事入れ版】270804_鳥取県人口ビジョン素案 7 6 5 4 3 2 1 65 1564 14 192 193 194 195 196 197 198 199 2 21 22 23 24 1.65 1,4 1.6 1,2 1.55 1, 1.45 6 1.5 8 1.4 4 1.35 1.3 2 27 28 29 21 211 212 213 214 6 5 4 3 2 1 213 218 223 228 233 238 243 248 253

More information

11.noise.rtfd

11.noise.rtfd // ~out = { WhiteNoise.ar0.5.dup, 0 }.plot; 1/f // ~out = { PinkNoise.ar0.5.dup, 0 }.plot; 2 1/f^2 // ~out = { BrownNoise.ar0.5.dup, 0 }.plot; // ~src.ar1; // ~src = { WhiteNoise.ar // ~freq.kr1; // ~out

More information

=

= 2. 2.1 2.2 kuri@ice.uec.ac.jp ( 2007/10/30/16:46) 1 . 1. 1 + 2 = 5. 2. 180. 3. 3 3. 4.. 5.. 2 2.1 1.,,,,. 2., ( ) ( ).,,,, 3.,. 4.,,,. 3 1.,. 1. 1 + 2 = 5. (, ) 2. 180. (, ) 3. 3, 3. (, ) 4.. (, ) 5..

More information

untitled

untitled 74 1 300 20 9 11 (1) (2) (3) 14 2 1 252 75 3002 2 201 10124 50012001 652 4020 110023 () 1 3 RGB redg green blue 4 5 () 6 ( ) () Y 7 A: B: 3 () () 8 4 6 redundant 9 10 (1) 11 (2) 12 (3) 13 14 http://www.vischeck.com/vischeck/vischeckimage.php

More information

掲示用ヒート表 第34回 藤沢市長杯 2017

掲示用ヒート表 第34回 藤沢市長杯 2017 34 8 4 2 Round 1 Round 2 SEMI FINAL 30 16 8 H1 H5 H1 H1 Red 12401821 2 Red 12601360 2 1-1 Red 12501915 1 1-1 Red 12501915 4 White 12900051 4 White 12600138 3 3-1 White 12802412 2 3-1 White 12801091 1 Yellow

More information

スライド 1

スライド 1 グラフィックスの世界第 3 回 サイバーメディアセンター サイバーコミュニティ研究部門安福健祐 Processing によるアニメーション setup と draw void setup() size(400, 400); void draw() ellipse( mousex,mousey,100,100); void とか setup とか draw とかはじめて見る が出てきてややこしい ellipseは円描く関数でした

More information

Q.5-1 Ans.

Q.5-1 Ans. 5 Q.5-1 Q.5-2 Q.5-3 Q.5-4 Q.5-5 Q.5-6 Q.5-7 Q.5-8 Q.5-9 Q.5-10 Q.5-11 Q.5-12 Q.5-13 Q.5-14 Q.5-15 Q.5-1 Ans. Q.4-5 1 Q.5-3 Check Q.5-2 200 203 197 199 Q.5-2 Ans. Check Q.5-3 Ans. Q.5-2 12 Q.6-4 69 56

More information

★結果★ 藤沢市長杯 掲示用ヒート表

★結果★ 藤沢市長杯 掲示用ヒート表 AA 35 Round 1 8 4 Round 2 28 16 SEMI FINAL H1 H5 H1 H1 Red 12802015 1 Red 12802109 1 1-1 Red 12802015 2 1-1 Red 12702346 White 12800232 2 White 12702406 3 3-1 White 12702346 1 3-1 White 12802109 Yellow

More information

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 ( ) 24 25 26 27 28 29 30 ( ) ( ) ( ) 31 32 ( ) ( ) 33 34 35 36 37 38 39 40 41 42 43 44 ) i ii i ii 45 46 47 2 48 49 50 51 52 53 54 55 56 57 58

More information

untitled

untitled i ii (1) (1) (2) (1) (3) (1) (1) (2) (1) (3) (1) (1) (2) (1) (3) (2) (3) (1) (2) (3) (1) (1) (1) (1) (2) (1) (3) (1) (2) (1) (3) (1) (1) (1) (2) (1) (3) (1) (1) (2) (1) (3)

More information

平成18年度「商品先物取引に関する実態調査」報告書

平成18年度「商品先物取引に関する実態調査」報告書 ... 1.... 5-1.... 6-2.... 9-3.... 10-4.... 12-5.... 13-6.... 15-7.... 16-8.... 17-9.... 20-10.... 22-11.... 24-12.... 27-13... 29-14.... 32-15... 37-16.... 39-17.... 41-18... 43-19... 45.... 49-1... 50-2...

More information

23 15961615 1659 1657 14 1701 1711 1715 11 15 22 15 35 18 22 35 23 17 17 106 1.25 21 27 12 17 420,845 23 32 58.7 32 17 11.4 71.3 17.3 32 13.3 66.4 20.3 17 10,657 k 23 20 12 17 23 17 490,708 420,845 23

More information

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

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

More information

タイの食品市場(国庫用)訂正.PDF

タイの食品市場(国庫用)訂正.PDF 7 2004 ( ) ... 1... 2... 4... 7...11... 14... 16... 23... 24... 27... 29... 34... 39... 39... 43... 53... 58... 61... 62 ... 70... 78... 79... 83... 83... 86... 92... 93... 95... 101... 102... 104... 105...110...113...116...118...119...

More information

課題

課題 float[] xball; float[] yball; int numberofballs = (a) ; int radius=10; size(400,400); xball = (b) (c) [numberofballs]; yball = (d) (e) [numberofballs]; xball[i] = random(radius,width-radius); yball[i]

More information

180 30 30 180 180 181 (3)(4) (3)(4)(2) 60 180 (1) (2) 20 (3)

180 30 30 180 180 181 (3)(4) (3)(4)(2) 60 180 (1) (2) 20 (3) 12 12 72 (1) (2) (3) 12 (1) (2) (3) (1) (2) (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (1) (2) 180 30 30 180 180 181 (3)(4) (3)(4)(2) 60 180 (1) (2) 20 (3) 30 16 (1) 31 (2) 31 (3) (1) (2) (3) (4) 30

More information

... 6

... 6 ... 6 1) 2) No. 01 02 03 04 05 06 07 08 09 10 11 12 No. 1 2 2 3 3cm 4

More information

untitled

untitled 1....1 2....2 2.1...2 2.2...2 3....14 3.1...14 3.2...14 4....15 4.1...15 4.2...18 4.3...21 4.4...23 4.5...26 5....27 5.1...27 5.2...35 5.3...54 5.4...64 5.5...75 6....79 6.1...79 6.2...85 6.3...94 6.4...

More information

113 120cm 1120cm 3 10cm 900 500+240 10 1 2 3 5 4 5 3 8 6 3 8 6 7 6 8 4 4 4 4 23 23 5 5 7

More information

untitled

untitled 21 14 487 2,322 2 7 48 4 15 ( 27) 14 3(1867) 3 () 1 2 3 ( 901923 ) 5 (1536) 3 4 5 6 7 8 ( ) () () 9 10 21 11 12 13 14 16 17 18 20 1 19 20 21 22 23 21 22 24 25 26 27 28 22 5 29 30cm 7.5m 1865 3 1820 5

More information

1948 1907 4024 1925 14 19281929 30 111931 4 3 15 4 16 3 15 4 161933 813 1935 12 17 11 17 1938 1945 2010 14 221 1945 10 1946 11 1947 1048 1947 1949 24

1948 1907 4024 1925 14 19281929 30 111931 4 3 15 4 16 3 15 4 161933 813 1935 12 17 11 17 1938 1945 2010 14 221 1945 10 1946 11 1947 1048 1947 1949 24 15 4 16 1988 63 28 19314 29 3 15 4 16 19283 15294 16 1930 113132 3 15 4 16 33 13 35 12 3 15 4 16 1945 10 10 10 10 40 1948 1907 4024 1925 14 19281929 30 111931 4 3 15 4 16 3 15 4 161933 813 1935 12 17 11

More information

裁定審議会における裁定の概要 (平成23年度)

裁定審議会における裁定の概要 (平成23年度) 23 23 23 4 24 3 10 11 12 13 14 () 1 23 7 21 23 12 14 (19 ) 30 1.876% 60 8 24 19 78 27 1 (10) 37 (3) 2 22 9 21 23 5 9 21 12 1 22 2 27 89 10 11 6 A B 3 21 12 1 12 10 10 12 5 1 9 1 2 61 ( 21 10 1 11 30 )

More information

Microsoft Word - 入居のしおり.doc

Microsoft Word - 入居のしおり.doc 1 1 2 2 2 3 2 4 3 5 3 6 3 7 3 8 4 1 7 2 7 3 7 4 8 5 9 6 9 7 10 8 10 9 11 10 11 11 11 12 12 13 13 1 14 2 17 3 18 4 19 5 20 6 22 (1) 24 (2) 24 (3) 24 (4) 24 (5) 24 (6) 25 (7) 25 (8) 25 (9) 25 1 29 (1) 29

More information

和県監査H15港湾.PDF

和県監査H15港湾.PDF ...1...1...1...1...1...1...1...1...2...2...2...3...3...3...5...5...10...11...12...13...13...13...14...14...14...14...14...14...15...15...15...15...15 ...16...17 14...17...18...18...19...21...23 2...25...27...27...28...28...28

More information

( )

( ) ( ) () () 3 cm cm cm cm cm cm 1000 1500 50 500 1000 1000 1500 1000 10 50 300 1000 2000 1000 1500 50 10 1000 2000 300 50 1000 2000 1000 1500 50 10 1000 2000 300 30 10 300 1000 2000 1000 1500 1000

More information

2002 (1) (2) (3) (4) (5) (1) (2) (3) (4) (5) (1) (2) (3) (4) (5) (6) (7) (8) (1) (2) (3) (4) (1) (2) (3) (4) (5) (6) (7) (8) No 2,500 3 200 200 200 200 200 50 200 No, 3 1 2 00 No 2,500 200 7 2,000 7

More information

-26-

-26- -25- -26- -27- -28- -29- -30- -31- -32- -33- -34- -35- -36- -37- -38- cm -39- -40- 1 2 3 4 4 3 2 1 5 5-41- -42- -43- -44- -45- -46- -47- -48- -49- -50- cm -51- -52- -53- -54- -55- -56- -57- -58- -59- -60-

More information

-1- 4 1 2 4-2- -- 2 2 cm 0 80cm 2 80cm 80cm 80cm 50cm 80cm 50cm 6 80cm 100 50 50 cm 10 6 4 50cm 4 4 50cm -4- -5- cm 50cm 4 4 4 50cm 50cm 4 80cm 50cm 80cm 50cm 6 cm -6- 20 250cm 1 2 1 4 0cm 60cm cm cm 1

More information

untitled

untitled () () () () () ( ) () ( ) () ( ) () 2 () () 2 () () ( ) () () () 2 () () 2 3 ( ) () ( ) 2 3 4 () () 2 3 4 () () ( )( ) ( ) 2 ( ) 3 () () 2 3 () () 2 3 () () () () () () () () (( ) ( ) (( ))( )( ) ) 2 3

More information

河川砂防技術基準・基本計画編.PDF

河川砂防技術基準・基本計画編.PDF 4 1 1 1 1 1 2 1 2.1 1 2.2 2 2.3 2 2.4 2 3 2 4 3 2 4 1 4 1.1 4 1.2 4 2 4 2.1 4 2.2 4 2.3 5 2.4 5 2.5 5 2.5.1 5 2.5.2 5 2.6 5 2.6.1 5 2.6.2 5 2.6.3 5 2.6.4 5 2.6.5 6 2.7 6 2.7.1 6 2.7.2 6 2.7.3 6 2.7.4

More information

4 100g

4 100g 100g 10 20 30 40 50 60 70 80 4 5 7 9 12 15 19 24 60 100 10 80 100 20 10 5 20 195 20-1- 60 60 15 100 60 100 15 15 15 100 15 15 60 100 10 60 100 100 15 10 10 60 100 15 10 15 10 5-2- 80 80 24 100 80 100 24

More information

31 gh gw

31 gh gw 30 31 gh gw 32 33 1406 1421 640 0 (mm) (mm) MAX1513 MIN349 MIN280 MAX900 gh gw 34 gh gh gw gw gh gh gw gw gh gh gw gw 35 175 176 177 178 179 180 181 195 196 197 198 202 203 2 1 L L L2 L2 L2 L 2 2 1 L L

More information

「産業上利用することができる発明」の審査の運用指針(案)

「産業上利用することができる発明」の審査の運用指針(案) 1 1.... 2 1.1... 2 2.... 4 2.1... 4 3.... 6 4.... 6 1 1 29 1 29 1 1 1. 2 1 1.1 (1) (2) (3) 1 (4) 2 4 1 2 2 3 4 31 12 5 7 2.2 (5) ( a ) ( b ) 1 3 2 ( c ) (6) 2. 2.1 2.1 (1) 4 ( i ) ( ii ) ( iii ) ( iv)

More information

! & # # w w w w w w w w l & w_ # w_ w # w w w # w w # w w # w w w w bw w bw w bw w w bw w b w w_ l !!!!!! 6!!!! 6 ' ' ' ' ' ' ' ' ' ' ' '! ' ' ' ' ' ' ' ' ' ' ' ' ' '! ' ' ' ' ' ' ' ' ' ' '

More information

第32回新春波乗り大会2018

第32回新春波乗り大会2018 AA 32 Round 1 4 SEMI FINAL 2 20 8 FINAL H1 H1 H1 Red 12701793 1 1-1 Red 12701793 2 1-1 Red 11800623 White 12900058 4 3-1 White 12402115 4 2-1 White 12402209 Yellow 11603976 3 2-2 Yellow 12301534 3 1-2

More information

GLS user s reference 19 8 21 1 3 1.1....................................................... 3 1.2....................................................... 3 1.3.......................................................

More information

Triple 2:1 High-Speed Video Multiplexer (Rev. C

Triple 2:1 High-Speed Video Multiplexer (Rev. C www.tij.co.jp OPA3875 µ ± +5V µ RGB Channel OPA3875 OPA3875 (Patented) RGB Out SELECT ENABLE RED OUT GREEN OUT BLUE OUT 1 R G B RGB Channel 1 R1 G1 B1 X 1 Off Off Off 5V Channel Select EN OPA875 OPA4872

More information

FAX780CL_chap-first.fm

FAX780CL_chap-first.fm FAX-780CL ABCDEFGHIα 01041115:10 :01 FAX-780CL α 1 1 2 3 1 2 f k b a FAX-780CL α n p q 09,. v m t w FAX-780CL A BC B C D E F G H I c i c s s i 0 9 V X Q ( < N > O P Z R Q: W Y M S T U V i c i k

More information

FAX780TA_chap-first.fm

FAX780TA_chap-first.fm FAX-780TA ABCDEFGHIα 01041115:10 :01 FAX-780CL α 1 1 2 3 1 2 f k b a FAX-780TA α n p q 09,. v m t w FAX-780TA A BC B C D E F G H I c i c s s i 0 9 i c i k o o o t c 0 9 - = C t C B t - = 1 2 3

More information

Processingをはじめよう

Processingをはじめよう Processing をはじめよう 第 7 章 動きその 2 目次 フレームレート スピードと方向 移動 回転 拡大 縮小 2 点間の移動 乱数 タイマー 円運動 今回はここまで 2 2 点間の移動 Example 7-6 (EX_08_06) 始点 (startx, starty) から終点 (stopx, stopy) まで移動する 座標更新の計算方法は後述 始点と終点を変更しても動作する 変更して確認

More information

DiMP Users Manual Yuichi Tazaki

DiMP Users Manual Yuichi Tazaki DiMP Users Manual Yuichi Tazaki 3 1 5 2 7 2.1............................. 7 2.2........................... 7 3 DiMP 9 3.1............................... 9 3.2........................... 10 3.3...................................

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 13 of 14 ( RD S ) I 13 of 14 1 / 39 https://bit.ly/oitprog1 ( RD S ) I 13 of 14 2 / 39 game.rb ( RD S ) I 13 of 14 3 / 39 game.rb 12 ( ) 1 require "io/console"

More information

16 23 270 5 1 2 3 1 2 3 1 2 3 6 5 54 44 9 9 4,000 118 7 5 JA 8 1 1 2 16 48,000 1 1 1 1 2 2 3 1, 312. 87 4 5 10 3 31 6 10 4 25 7 3 1 2 8 2 495. 84 1 296. 49 2 199. 35 1 124. 62 54. 50 28. 80 34. 17 54.

More information

コンピュータグラフィックス - 第4回 色彩の表現

コンピュータグラフィックス - 第4回 色彩の表現 .. 4 2013 10 9 ( ) 2013 10 9 1 / 22 3 3 3 ( ) 2013 10 9 2 / 22 380 nm 780 nm 1 nm = 10 9 m ( ) 2013 10 9 3 / 22 3 3 (S M L ) 3 3 3 ( ) 2013 10 9 4 / 22 加法混色 光の 3 原色を組み合わせることで 様々な色を表現できる 光を重ねて別の色を作ることを加法混色と呼ぶ

More information

untitled

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

More information

課題

課題 int[] scores; PFont font; int[] scores = { (a) ; PFont font; size(300,400); scores = (a); scores[0] = 10000; scores[1] = 9000; scores[2] = 5000; scores[3] = 1000; scores[4] = 30; font = loadfont("serif-48.vlw");

More information

(1) 40m A 10 m/s A A x [m] B 10 m/s = 1. 4 S d [m] d[m] S S d[m] d [m] 0409 (1) () AB B A A x=10 m AB 0 m A (

(1) 40m A 10 m/s A A x [m] B 10 m/s = 1. 4 S d [m] d[m] S S d[m] d [m] 0409 (1) () AB B A A x=10 m AB 0 m A ( / 土 8 7 16 10:30 11:0 似通った科目名がありますので注意してください. 受験許可されていない科目を解答した場合は無効 整理番号と科目コードは受験許可証とよく照合し正確に記入 30 10 11 1 01101 0607 1596-1650 1561-166 0703 (1) 40m A 10 m/s A A x [m] B 10 m/s = 1. 4 S d [m] d[m] S

More information

31 33

31 33 17 3 31 33 36 38 42 45 47 50 52 54 57 60 74 80 82 88 89 92 98 101 104 106 94 1 252 37 1 2 2 1 252 38 1 15 3 16 6 24 17 2 10 252 29 15 21 20 15 4 15 467,555 14 11 25 15 1 6 15 5 ( ) 41 2 634 640 1 5 252

More information

G-XML

G-XML G-XML PreSerV for WebG-XML G-XML i 1... 3 1.1 G-XML... 3 1.2... 3 1.3... 4 1.4... 5 2 G-XML... 6 2.1... 6 2.2... 8 2.2.1... 9 2.2.2...13 2.2.3...14 2.2.4...16 2.2.5...16 2.3...17 2.3.2...17 2.3.3...17

More information

s t 1, 2,..., 10 s t a, b,..., k t s 1, 2,..., 10 1 a, b,..., k 1 s t ts 1 0 ( 2.25) ½ ¾ ½¼ x 1j = 1 x 2c = 1 x 3e = 1

s t 1, 2,..., 10 s t a, b,..., k t s 1, 2,..., 10 1 a, b,..., k 1 s t ts 1 0 ( 2.25) ½ ¾ ½¼ x 1j = 1 x 2c = 1 x 3e = 1 72 2 2 2 2.24 2 s t, 2,..., 0 s t a, b,..., k t s, 2,..., 0 a, b,..., k s t 0 ts 0 ( 2.25) 2.24 2 ½ ¾ ½¼ x j = x 2c = x 3e = x 4s = x 5g = x 6i = x 7d = x 8h = x 9f = x 0k = x ta = x tb = x ts = 9 2.26

More information

課題

課題 2018 6 22 2. float[] y = new float[5]; void setup() { size(400, 200); for (int i=0;i< (a) ;i++) { y[i] = random(0.3*width, width); void draw() { y[ (b) ] = mousex; int minpos = findminpos( (c) ); for (int

More information

cm H.11.3 P.13 2 3-106-

cm H.11.3 P.13 2 3-106- H11.3 H.11.3 P.4-105- cm H.11.3 P.13 2 3-106- 2 H.11.3 P.47 H.11.3 P.27 i vl1 vl2-107- 3 h vl l1 l2 1 2 0 ii H.11.3 P.49 2 iii i 2 vl1 vl2-108- H.11.3 P.50 ii 2 H.11.3 P.52 cm -109- H.11.3 P.44 S S H.11.3

More information

課題

課題 int starttime_msec; boolean counting = false; size(400,200); smooth(); //font は各自のものに変更してください font = loadfont("serif-48.vlw"); void mouseclicked(){ counting = true; starttime_msec = millis(); int t=0;

More information

CSSNiteLP51-s7-kubo.key

CSSNiteLP51-s7-kubo.key CSS Nite LP51 Reboot Dreamweaver Dreamweaver 10th .foo width: 980px margin: auto p margin: 1em 0 a color: #000 text-decoration: none .foo { width: 980px; margin: auto; p { margin: 1em 0; a { color:

More information

新版明解C言語 実践編

新版明解C言語 実践編 2 List - "max.h" a, b max List - max "max.h" #define max(a, b) ((a) > (b)? (a) : (b)) max List -2 List -2 max #include "max.h" int x, y; printf("x"); printf("y"); scanf("%d", &x); scanf("%d", &y); printf("max(x,

More information

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

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

More information

- 2 -

- 2 - - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - A) B) C) D) E) F) - 10 - G) H) I) J) P - 11 - 001 1,416,0003/4 1,062,000 002 100,000 50,00023 1,150,000 2,100,000 200,000+ 100,0000.9 1,600,000 JA

More information

L N P Y F C T V W Z I X Pentomino Form Name Caption Position FormMain podesktopcenter

L N P Y F C T V W Z I X Pentomino Form Name Caption Position FormMain podesktopcenter 1. 1 1 1.1 5 12 60 3 20 4 15 5 12 6 10 12 L N P Y F C T V W Z I X 1.1.1 1.2 Pentomino 1.2.1 Form Name Caption Position FormMain podesktopcenter 1.2.2 unit PentominoU; interface uses Windows, Messages,

More information

19 3!! (+) (>) (++) (+=) for while 3.1!! (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics;

19 3!! (+) (>) (++) (+=) for while 3.1!! (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics; 19 3!!...... (+) (>) (++) (+=) for while 3.1!! 3.1.1 50 20 20 5 (20, 20) 3.1.1 (1)(Blocks1.java) public class Blocks1 extends JApplet { public void paint(graphics g){ 5 g.drawrect( 20, 20, 50, 20); g.drawrect(

More information

?

? 240-8501 79-2 Email: nakamoto@ynu.ac.jp 1 3 1.1...................................... 3 1.2?................................. 6 1.3..................................... 8 1.4.......................................

More information

main.dvi

main.dvi MATLAB DCS MATLAB/Simulink MATLAB/Simulink MATLAB Simulink MATLAB/Simulink DCS 1 MATLAB Simulink 2 MATLAB Simulink 3 MAT- LAB/Simulink 4 MATLAB/Simulink ii PID 5 2 43 MATLAB 6 MATLAB 7 MATLAB 8 DCS MATLAB

More information

課題

課題 float xball;// 円の中心の X 座標 float yball; // 円の中心の Y 座標 float rball; // 円の半径 color cball; // 円の色 // 円を移動させる void updateball(){ yball -= 1; if(yball+rball< 0){ yball = height+rball; // 円を描く void drawball(){

More information

# let st1 = {name = "Taro Yamada"; id = };; val st1 : student = {name="taro Yamada"; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n

# let st1 = {name = Taro Yamada; id = };; val st1 : student = {name=taro Yamada; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n II 6 / : 2001 11 21 (OCaml ) 1 (field) name id type # type student = {name : string; id : int};; type student = { name : string; id : int; } student {} type = { 1 : 1 ;...; n : n } { 1 = 1 ;...; n = n

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

3 3.1 SSedit ua012345% ssedit SuperSQL config.ssql log.txt( logs.txt) SSedit SSedit 3.2 ssql Putty SSedit ua012345% ssql HTML /public html/ssql.ssql 4

3 3.1 SSedit ua012345% ssedit SuperSQL config.ssql log.txt( logs.txt) SSedit SSedit 3.2 ssql Putty SSedit ua012345% ssql HTML /public html/ssql.ssql 4 SuperSQL SuperSQL 2016 12 13 1 SuperSQL ITC 2 SuperSQL 2.1 public html/ssql 2.2 SSedit SSedit (3.1 ) postgresql (ua123456 ) 131.113.101.124 /public html/ssql SuperSQL HTML /public html/ssql http://user.keio.ac.jp/

More information

1. 2 P 2 (x, y) 2 x y (0, 0) R 2 = {(x, y) x, y R} x, y R P = (x, y) O = (0, 0) OP ( ) OP x x, y y ( ) x v = y ( ) x 2 1 v = P = (x, y) y ( x y ) 2 (x

1. 2 P 2 (x, y) 2 x y (0, 0) R 2 = {(x, y) x, y R} x, y R P = (x, y) O = (0, 0) OP ( ) OP x x, y y ( ) x v = y ( ) x 2 1 v = P = (x, y) y ( x y ) 2 (x . P (, (0, 0 R {(,, R}, R P (, O (0, 0 OP OP, v v P (, ( (, (, { R, R} v (, (, (,, z 3 w z R 3,, z R z n R n.,..., n R n n w, t w ( z z Ke Words:. A P 3 0 B P 0 a. A P b B P 3. A π/90 B a + b c π/ 3. +

More information