web04.dvi

Size: px
Start display at page:

Download "web04.dvi"

Transcription

1 4 MATLAB 1 visualization MATLAB 2 Octave gnuplot Octave copyright c 2004 Tatsuya Kitamura / All rights reserved. 35

2 y =2x x 5 5 x y plot 4.1 Figure No. 1 figure window >> x=-5:5;ψ >> y=2*x;ψ >> plot(x,y)ψ 4.1: y =2x ( 5 x 5) plot plot MATLAB close MAT Octave closeplot OCT X plot(y) X X X Y 36

3 4.2. >> x2=-3:3;ψ >> y2=2*x+1;ψ >> plot(x,y,x2,y2)ψ >> x=-5:-5;ψ >> Y=2*x; Y=[Y; 2*x+1]; Y=[Y; 2*x+2];ψ >> plot(x,y)ψ 4.2 grid linegrid MATLAB grid on grid off Octave grid "on" grid "off" MATLAB grid toggle 2 grid grid Octave grid Octave grid "on" replot OCT octave:4> grid "on"ψ octave:5> replotψ grid off replot OCT 4.3 MATLAB Octave plot 37

4 4 POINT plot 1 plot(x, Y, ) plot(x 1, Y 1,, X 2, Y 2,,...) MATLAB Octave MATLAB MATLAB MATLAB dotted green g : >> plot(x,y, g: )ψ solid solid - cyan cs >> plot(x,y, cs )ψ >> plot(x,y, cs-. )ψ TRY 38

5 : MATLAB y yellow g green m magenta b blue c cyan w white r red k black 4.2: MATLAB - solid : dotted -. dashdot -- dashed 4.3: MATLAB. v o ^ x < < + + > > * p s 4 h 6 d : x=-5:5; y=2*x; plot(x,y, cs-. ); grid on 39

6 Octave Octave dots plot style green g. lines plot style - octave:1> x=-5:5; y=2*x;ψ octave:2> plot(x,y, g. )ψ 4.4 plot(x,y, 2. ) cyan c3 octave:3> plot(x,y, c3 )ψ plot(x,y, 53 ) linespoints plot style -@ dots plot style octave:4> plot(x,y, c3-@. )ψ Octave gnuplot gplot OCT Octave 1 4.4: Octave 1 r red 4 m magenta 2 g green 5 c cyan 3 b blue 6 w brown 1, gnuplot, (1999). 40

7 : Octave - lines plot style. dots plot points plot style -@ linespoints plot style ^ impulses plot plot style L steps plot style 4.6: Octave 1 o 4 x * TRY Tips plot(x,y, r+- ) plot(x,y, r+,x,y, b- ) 2 plot(x,y, r+,x,y, b-,x,y, y-- ) 4.4 X Y label title 1 y =sin(ω) π 10 sin >> omega=0:pi/10:4*pi;ψ >> plot(omega,sin(omega))ψ X Y xlabel ylabel title 41

8 4 UNIX MATLAB Windows MATLAB >> xlabel( omega [rad] ); ylabel( y )ψ >> title( sin(omega) )ψ MATLAB L A TEX 2 LATEX ω π y =sin(ω) 4.3 >> xlabel( \omega [rad] ); ylabel( y )ψ >> title( sin(\omega) (0 \leq \omega \leq 4\pi) )ψ 1 sin(ω) (0 ω 4π) y ω [rad] 4.3: Octave 4.2 grid 4.5 Octave MATLAB legend MAT 2 Octave 42

9 : MATLAB L A TEX α \alpha β \beta γ \gamma δ \delta ɛ \epsilon ζ \zeta η \eta θ \theta ϑ \vartheta ι \iota κ \kappa λ \lambda µ \mu ν \nu ξ \xi π \pi ρ \rho σ \sigma ς \varsigma τ \tau υ \upsilon φ \phi χ \chi ψ \psi ω \omega Γ \Gamma \Delta Θ \Theta Λ \Lambda Ξ \Xi Π \Pi Σ \Sigma Υ \Upsilon Φ \hi Ψ \Psi Ω \Omega ϖ \varpi 4.8: MATLAB LATEX \equiv \neq = \cong \approx \oplus \otimes \oslash \int \cap \supset \cup \infty \supseteq \supset \subseteq \subset \rfloor \lfloor \rceil \lceil \langle \rangle \circ \bullet \leftarrow \uparrow \rightarrow \downarrow \diamondsuit \heartsuit \spadesuit \clubsuit \leq \geq R \Re I \Im \times \div ± \pm c \copyright \wedge \vee \in \ni \forall \exists \cdots...\ldots \perp = \cong \neg \surd \sim \partial ℵ \aleph \wp ø \o \nabla \prime Ø \O \mid \leftrightarrow 43

10 4 legend MAT y =sin(ω) y =cos(ω) L A TEX 4.4 >> omega=0:pi/10:4*pi;ψ >> plot(omega,sin(omega), b,omega,cos(omega), r-- );ψ >> legend( sin(\omega), cos(\omega) );ψ sin(ω) (0 ω 4π) sin(ω) cos(ω) y ω [rad] 4.4: legend off hold plot hold POINT hold 44

11 4.7. hold grid hold on hold off Octave grid on off MATLAB hold grid 1 hold hold y =sin(ω) y =cos(ω) >> omega=0:pi/10:4*pi;ψ >> plot(omega,sin(omega), b )ψ >> hold onψ >> plot(omega,cos(omega), r-- )ψ MATLAB clf MAT CLear current Figure Octave clearplot OCT TRY 4.4 y =sin(ω + π 5 ) Y axis 4.4 >> axisψ ans = X X Y Y ω 4π 1.5 y 1.5 >> axis([0 4*pi ]);ψ 45

12 4 1.5 sin(ω) (0 ω 4π) sin(ω) cos(ω) y ω [rad] 4.5: axis([0 4*pi ]) figure Figure No. 2 y = x 2 +5 ( 10 x 10) >> x=-10:10;ψ >> figure; plot(x,x.ˆ2+5)ψ figure 1 >> figure(1)ψ >> hold on; plot(x2,y2, g: )ψ 46

13 4.9. handler gcf MAT Get Current Figure >> gcfψ ans = 1 Figure No. 1 1 TRY figure 4.9 POINT subplot m n k subplot(mnk) subplot(m,n,k) subplot(421) subplot(4,2,1) subplot plot 2 >> subplot(211); plot(x1,y1)ψ >> subplot(212); plot(x2,y2)ψ >> subplot(211)ψ >> xlabel( x ); ylabel( y ); title( 1st plot )ψ 47

14 4 4.6: 4 2 subplot(421) subplot(428) grid hold axis MATLAB cla MAT CLear current Axis clf MAT 2 1 subplot clf MAT >> subplot(211)ψ >> claψ TRY 3 X Y 48

15 Tips >> subplot(211); plot(x1,y1)ψ >> subplot(223); plot(x2,y2)ψ >> subplot(224); plot(x3,y3)ψ 4.10 print subplot UNIX MATLAB print UNIX MATLAB print : UNIX MATLAB print -P -f 2 lp1 >> print -Plp1 -f2ψ -P -f GUI File Print toolbar Print 49

16 4 4.7: 4.8: Print Print 4.10 Print 4.10: Print Paper type Paper orientation Printer Device option Send to File Print Save Page Setup File Page Setup 4.9 Page Setup File Print Preview 50

17 : Page Setup 4.11: Page Setup Orientation Limits Color Size and Position Windows MATLAB UNIX MATLAB print Windows MATLAB print 4.12 Windows UNIX GUI UNIX 4.12: Windows MATLAB print -dwin -dwinc -dsetup -f 51

18 Octave gset OCT replot OCT PostScript PS ghostscript gset OCT terminal postscript UNIX lpr replot OCT octave:5> gset terminal postscriptψ octave:6> gset output " lpr"ψ octave:7> replotψ X terminal x11 octave:8> gset terminal x11ψ octave:9> gset outputψ gshow OCT terminal terminal x11 octave:10> gshow terminal ψ terminal type is x11 0 gset OCT gshow OCT gnuplot set show PS gnuplot set MATLAB print POINT MATLAB print -d MATLAB f print 52

19 GUI -dps -dpsc -dps2 -dpsc2 -deps -depsc -deps2 -depsc2 -djpegnn -dtiff -dmeta -dbitmap -dmfile 4.13: print PostScipt PS PS 2 PS 2 PS Encapsulated PostScript EPS EPS 2 EPS 2 EPS JPEG nn TIFF Metafile Windows bitmap Windows graph01.eps 1 Encapsulated PostScript EPS >> print -deps graph01.eps ψ EPS LATEX >> fname = graph02.eps ;ψ >> print -deps fnameψ -dmeta -dbitmap Windows print -dbitmap graph03.bmp 1 print >> print -dmetaψ Microsoft Word Microsoft PowerPoint MATLAB 53

20 4 -dmfile MAT M 1 graph04.mat graph04.m >> print -dmfile graph04ψ >> graph04ψ MATLAB MATLAB 54

21 Octave gset OCT replot OCT PS terminal postscript replot OCT octave:11> gset terminal postscriptψ octave:12> gset output "graph04.ps"ψ octave:13> replotψ EPS terminal postscript eps postscript gnuplot set replot OCT octave:14> gset terminal postscript epsψ octave:15> gset output "graph04.eps"ψ octave:16> replotψ X terminal x11 octave:17> gset terminal x11ψ octave:18> gset outputψ gnuplot PS EPS GIF Tgif L A TEX picture gnuplot set 55

1.2 L A TEX 2ε Unicode L A TEX 2ε L A TEX 2ε Windows, Linux, Macintosh L A TEX 2ε 1.3 L A TEX 2ε L A TEX 2ε 1. L A TEX 2ε 2. L A TEX 2ε L A TEX 2ε WYS

1.2 L A TEX 2ε Unicode L A TEX 2ε L A TEX 2ε Windows, Linux, Macintosh L A TEX 2ε 1.3 L A TEX 2ε L A TEX 2ε 1. L A TEX 2ε 2. L A TEX 2ε L A TEX 2ε WYS L A TEX 2ε 16 10 7 1 L A TEX 2ε L A TEX 2ε TEX Stanford Donald E. Knuth 1.1 1.1.1 Windows, Linux, Macintosh OS Adobe Acrobat Reader Adobe Acrobat Reader PDF 1.1.2 1 1.2 L A TEX 2ε Unicode L A TEX 2ε L

More information

基礎数学I

基礎数学I I & II ii ii........... 22................. 25 12............... 28.................. 28.................... 31............. 32.................. 34 3 1 9.................... 1....................... 1............

More information

2. label \ref \figref \fgref graphicx \usepackage{graphicx [tb] [h] here [tb] \begin{figure*~\end{figure* \ref{fig:figure1 1: \begin{figure[

2. label \ref \figref \fgref graphicx \usepackage{graphicx [tb] [h] here [tb] \begin{figure*~\end{figure* \ref{fig:figure1 1: \begin{figure[ L A TEX 22 7 26 1. 1.1 \begin{itemize \end{itemize 1.2 1. 2. 3. \begin{enumerate \end{enumerate 1.3 1 2 3 \begin{description \item[ 1] \item[ 2] \item[ 3] \end{description 2. label \ref \figref \fgref

More information

L A TEX ver L A TEX LATEX 1.1 L A TEX L A TEX tex 1.1 1) latex mkdir latex 2) latex sample1 sample2 mkdir latex/sample1 mkdir latex/sampl

L A TEX ver L A TEX LATEX 1.1 L A TEX L A TEX tex 1.1 1) latex mkdir latex 2) latex sample1 sample2 mkdir latex/sample1 mkdir latex/sampl L A TEX ver.2004.11.18 1 L A TEX LATEX 1.1 L A TEX L A TEX tex 1.1 1) latex mkdir latex 2) latex sample1 sample2 mkdir latex/sample1 mkdir latex/sample2 3) /staff/kaede work/www/math/takase sample1.tex

More information

プレゼン資料 - MathML

プレゼン資料 - MathML MathML2006.03 MathML MathML2006.03-0.1 MathML 2 URL http://www.hinet.mydns.jp/~hiraku/presentation/?mathml2006.03 MathML2006.03-0.2 1. 1. Web MathML 2. MathML 3. CMS Wiki 2. CMS + MathML = 1. tdiary Hiki

More information

: , 2.0, 3.0, 2.0, (%) ( 2.

: , 2.0, 3.0, 2.0, (%) ( 2. 2017 1 2 1.1...................................... 2 1.2......................................... 4 1.3........................................... 10 1.4................................. 14 1.5..........................................

More information

基礎から学ぶトラヒック理論 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. このサンプルページの内容は, 初版 1 刷発行時のものです.

基礎から学ぶトラヒック理論 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます.   このサンプルページの内容は, 初版 1 刷発行時のものです. 基礎から学ぶトラヒック理論 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/085221 このサンプルページの内容は, 初版 1 刷発行時のものです. i +α 3 1 2 4 5 1 2 ii 3 4 5 6 7 8 9 9.3 2014 6 iii 1 1 2 5 2.1 5 2.2 7

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

b3e2003.dvi

b3e2003.dvi 15 II 5 5.1 (1) p, q p = (x + 2y, xy, 1), q = (x 2 + 3y 2, xyz, ) (i) p rotq (ii) p gradq D (2) a, b rot(a b) div [11, p.75] (3) (i) f f grad f = 1 2 grad( f 2) (ii) f f gradf 1 2 grad ( f 2) rotf 5.2

More information

web05.dvi

web05.dvi 5 3 copyright c Tatsuya Kitamura / All rights reserved. 57 5 5. 3 MATLAB 3 line plot plot3 MAT plot Z Octave gnuplot splot gsplot OCT 3 splot plot3 MAT plot 5. 5. 5.3 plot 5. >> t=:pi/:*pi; >> plot3(t.*cos(t),t.*sin(t),t)

More information

MediaWiki for Kisorigaku

MediaWiki for Kisorigaku MediaWiki for Kisorigaku 22 10 1 1 Kisorigaku 5 1.1... 6... 6... 6 2 MediaWiki 7 2.1... 8... 8... 8... 8 2.2... 9... 9... 10... 10... 10..................................... 11 3 13 3.1... 14... 14...

More information

web06.dvi

web06.dvi 73 6 MATLAB MATLAB GUI GUI M copyright c 2004 Tatsuya Kitamura / All rights reserved. 74 6 6.1 GUI MATLAB GUI property Windows MATLAB UNIX MATLAB GUI Graphical User Interface PC Red Hat Linux 5.2J Vine

More information

L A TEX Copyright c KAKEHI Katsuhiko All Rights Reserved 1 L A TEX \documentstyle[< >]{jarticle} \title{< >} \author{< >} \date{< >} < > \be

L A TEX Copyright c KAKEHI Katsuhiko All Rights Reserved 1 L A TEX \documentstyle[< >]{jarticle} \title{< >} \author{< >} \date{< >} < > \be L A TEX Copyright c KAKEHI Katsuhiko 1996-1998 All Rights Reserved 1 L A TEX \documentstyle[< >]{jarticle} \title{} \author{< >} \date{} \begin{document} \end{document} article jarticle report jreport

More information

第86回日本感染症学会総会学術集会後抄録(II)

第86回日本感染症学会総会学術集会後抄録(II) χ μ μ μ μ β β μ μ μ μ β μ μ μ β β β α β β β λ Ι β μ μ β Δ Δ Δ Δ Δ μ μ α φ φ φ α γ φ φ γ φ φ γ γδ φ γδ γ φ φ φ φ φ φ φ φ φ φ φ φ φ α γ γ γ α α α α α γ γ γ γ γ γ γ α γ α γ γ μ μ κ κ α α α β α

More information

Ver.2.2 20.07.2 3 200 6 2 4 ) 2) 3) 4) 5) (S45 9 ) ( 4) III 6) 7) 8) 9) ) 2) 3) 4) BASIC 5) 6) 7) 8) 9) ..2 3.2. 3.2.2 4.2.3 5.2.4 6.3 8.3. 8.3.2 8.3.3 9.4 2.5 3.6 5 2.6. 5.6.2 6.6.3 9.6.4 20.6.5 2.6.6

More information

医系の統計入門第 2 版 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. このサンプルページの内容は, 第 2 版 1 刷発行時のものです.

医系の統計入門第 2 版 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます.   このサンプルページの内容は, 第 2 版 1 刷発行時のものです. 医系の統計入門第 2 版 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/009192 このサンプルページの内容は, 第 2 版 1 刷発行時のものです. i 2 t 1. 2. 3 2 3. 6 4. 7 5. n 2 ν 6. 2 7. 2003 ii 2 2013 10 iii 1987

More information

L \ L annotation / / / ; / ; / ;.../ ;../ ; / ;dash/ ;hyphen/ ; / ; / ; / ; / ; / ; ;degree/ ;minute/ ;second/ ;cent/ ;pond/ ;ss/ ;paragraph/ ;dagger/

L \ L annotation / / / ; / ; / ;.../ ;../ ; / ;dash/ ;hyphen/ ; / ; / ; / ; / ; / ; ;degree/ ;minute/ ;second/ ;cent/ ;pond/ ;ss/ ;paragraph/ ;dagger/ L \ L annotation / / / ; /; /;.../;../ ; /;dash/ ;hyphen/ ; / ; / ; / ; / ; / ; ;degree/ ;minute/ ;second/ ;cent/;pond/ ;ss/ ;paragraph/ ;dagger/ ;ddagger/ ;angstrom/;permil/ ; cyrillic/ ;sharp/ ;flat/

More information

微分積分 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. このサンプルページの内容は, 初版 1 刷発行時のものです.

微分積分 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます.   このサンプルページの内容は, 初版 1 刷発行時のものです. 微分積分 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. ttp://www.morikita.co.jp/books/mid/00571 このサンプルページの内容は, 初版 1 刷発行時のものです. i ii 014 10 iii [note] 1 3 iv 4 5 3 6 4 x 0 sin x x 1 5 6 z = f(x, y) 1 y = f(x)

More information

確率論と統計学の資料

確率論と統計学の資料 5 June 015 ii........................ 1 1 1.1...................... 1 1........................... 3 1.3... 4 6.1........................... 6................... 7 ii ii.3.................. 8.4..........................

More information

x1 GNUPLOT 2 x4 12 x1 Gnuplot Gnuplot,,. gnuplot, PS (Post Script), PS ghostview.,.,,,.,., gnuplot,,, (x2). x1.1 Gnuplot (gnuplot, quit) gnuplot,. % g

x1 GNUPLOT 2 x4 12 x1 Gnuplot Gnuplot,,. gnuplot, PS (Post Script), PS ghostview.,.,,,.,., gnuplot,,, (x2). x1.1 Gnuplot (gnuplot, quit) gnuplot,. % g Gnuplot Shigetoshi Yazaki gnuplot(ver. 3.0).,.,. ( ), (, ) 3. x1 Gnuplot 2 x1.1 Gnuplot (gnuplot, quit) : : : : : : : : : : : : : 2 x1.2 (plot) : : : : : : : : : : : : : : : : : : : : : : : : : : : : :

More information

II - ( 02 ) 1,,,, 2, 3. ( ) HP,. 2 MATLAB MATLAB, C Java,,., MATLAB, Workspace, Workspace. Workspace who. whos. MATLAB, MATLAB Workspace. 2.1 Workspac

II - ( 02 ) 1,,,, 2, 3. ( ) HP,. 2 MATLAB MATLAB, C Java,,., MATLAB, Workspace, Workspace. Workspace who. whos. MATLAB, MATLAB Workspace. 2.1 Workspac II - ( 02 ) 1,,,, 2, 3 ( ) HP, 2 MATLAB MATLAB, C Java,,, MATLAB, Workspace, Workspace Workspace who whos MATLAB, MATLAB Workspace 21 Workspace 211 Workspace save, Workspace, MATLAB MAT, load, MAT Workspace

More information

24.15章.微分方程式

24.15章.微分方程式 m d y dt = F m d y = mg dt V y = dy dt d y dt = d dy dt dt = dv y dt dv y dt = g dv y dt = g dt dt dv y = g dt V y ( t) = gt + C V y ( ) = V y ( ) = C = V y t ( ) = gt V y ( t) = dy dt = gt dy = g t dt

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 秋学期情報スキル応用 田中基彦教授, 樫村京一郎講師 ( 工学部 共通教育科 ) DTP の基礎 (2) 1. 日本語の入力法 2. 数式, グラフィック, テーブル - 数式 のみは理数系 3. 相互参照, 目次, 文献参照 - あの項目はどこにある? * 提出問題 5 DTP について 提出問題 5 LaTeX 言語を用いる DTP (DeskTop Publishing) について, つぎの各問に答えなさい

More information

( ) ± = 2018

( ) ± = 2018 30 ( 3 ) ( ) 2018 ( ) ± = 2018 (PDF ), PDF PDF. PDF, ( ), ( ),,,,., PDF,,. , 7., 14 (SSH).,,,.,,,.,., 1.. 2.,,. 3.,,. 4...,, 14 16, 17 21, 22 26, 27( ), 28 32 SSH,,,, ( 7 9 ), ( 14 16 SSH ), ( 17 21, 22

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

GNUPLOT 28 3 15 UNIX Microsoft-Windows GNUPLOT 4 GNUPLOT 1 GNUPLOT 2 2 3 2.1 UNIX.......................................... 3 2.2 Windows........................................ 4 2.3..................................

More information

gnuplot.dvi

gnuplot.dvi gnuplot gnuplot 1 gnuplot exit 2 10 10 2.1 2 plot x plot sin(x) plot [-20:20] sin(x) plot [-20:20][0.5:1] sin(x), x, cos(x) + - * / ** 5 ** plot 2**x y =2 x sin(x) cos(x) exp(x) e x abs(x) log(x) log10(x)

More information

visit.dvi

visit.dvi L A TEX 1 L A TEX 1.1 L A TEX,. L A TEX,. ( Emacs). \documentclass{jarticle} \begin{document} Hello!!, \LaTeX Hello!!, L A TEX L A TEX2ε. \LaTeXe. \end{document},. \, L A TEX. L A TEX. \LaTeX L A TEX..

More information

1.5,. ( A, 7, * ) Emacs,., <Return>., <Delete>. <Delete>, Delete. <Delete>,. 1.6,.,, Emacs.,. ( ), ( ),,. C-x,., Emacs.,. C-x C-f ( )... C-x C-s. Emac

1.5,. ( A, 7, * ) Emacs,., <Return>., <Delete>. <Delete>, Delete. <Delete>,. 1.6,.,, Emacs.,. ( ), ( ),,. C-x,., Emacs.,. C-x C-f ( )... C-x C-s. Emac L A TEX 1 1.1 Emacs Emacs, (, CTRL, CTL ) (, )., CONTROL META,. C-< >, < >., C-f, f. ESC < >, < >. < >,. Emacs, C-x C-c.,. C-v. ESC v. 1.2., (previous) (next) (forward) (backward)., C-p, C-n, C-f, C-b,.

More information

A 2008 10 (2010 4 ) 1 1 1.1................................. 1 1.2..................................... 1 1.3............................ 3 1.3.1............................. 3 1.3.2..................................

More information

2.2 h h l L h L = l cot h (1) (1) L l L l l = L tan h (2) (2) L l 2 l 3 h 2.3 a h a h (a, h)

2.2 h h l L h L = l cot h (1) (1) L l L l l = L tan h (2) (2) L l 2 l 3 h 2.3 a h a h (a, h) 1 16 10 5 1 2 2.1 a a a 1 1 1 2.2 h h l L h L = l cot h (1) (1) L l L l l = L tan h (2) (2) L l 2 l 3 h 2.3 a h a h (a, h) 4 2 3 4 2 5 2.4 x y (x,y) l a x = l cot h cos a, (3) y = l cot h sin a (4) h a

More information

N cos s s cos ψ e e e e 3 3 e e 3 e 3 e

N cos s s cos ψ e e e e 3 3 e e 3 e 3 e 3 3 5 5 5 3 3 7 5 33 5 33 9 5 8 > e > f U f U u u > u ue u e u ue u ue u e u e u u e u u e u N cos s s cos ψ e e e e 3 3 e e 3 e 3 e 3 > A A > A E A f A A f A [ ] f A A e > > A e[ ] > f A E A < < f ; >

More information

TOP URL 1

TOP URL   1 TOP URL http://amonphys.web.fc2.com/ 1 30 3 30.1.............. 3 30.2........................... 4 30.3...................... 5 30.4........................ 6 30.5.................................. 8 30.6...............................

More information

I A A441 : April 15, 2013 Version : 1.1 I Kawahira, Tomoki TA (Shigehiro, Yoshida )

I A A441 : April 15, 2013 Version : 1.1 I   Kawahira, Tomoki TA (Shigehiro, Yoshida ) I013 00-1 : April 15, 013 Version : 1.1 I Kawahira, Tomoki TA (Shigehiro, Yoshida) http://www.math.nagoya-u.ac.jp/~kawahira/courses/13s-tenbou.html pdf * 4 15 4 5 13 e πi = 1 5 0 5 7 3 4 6 3 6 10 6 17

More information

TOP URL 1

TOP URL   1 TOP URL http://amonphys.web.fc.com/ 3.............................. 3.............................. 4.3 4................... 5.4........................ 6.5........................ 8.6...........................7

More information

,. Black-Scholes u t t, x c u 0 t, x x u t t, x c u t, x x u t t, x + σ x u t, x + rx ut, x rux, t 0 x x,,.,. Step 3, 7,,, Step 6., Step 4,. Step 5,,.

,. Black-Scholes u t t, x c u 0 t, x x u t t, x c u t, x x u t t, x + σ x u t, x + rx ut, x rux, t 0 x x,,.,. Step 3, 7,,, Step 6., Step 4,. Step 5,,. 9 α ν β Ξ ξ Γ γ o δ Π π ε ρ ζ Σ σ η τ Θ θ Υ υ ι Φ φ κ χ Λ λ Ψ ψ µ Ω ω Def, Prop, Th, Lem, Note, Remark, Ex,, Proof, R, N, Q, C [a, b {x R : a x b} : a, b {x R : a < x < b} : [a, b {x R : a x < b} : a,

More information

Microsoft Word - Wordで楽に数式を作る.docx

Microsoft Word - Wordで楽に数式を作る.docx Ver. 3.1 2015/1/11 門 馬 英 一 郎 Word 1 する必要がある Alt+=の後に Ctrl+i とセットで覚えておく 1.4. 変換が出来ない場合 ごく稀に以下で説明する変換機能が無効になる場合がある その際は Word を再起動するとまた使えるようになる 1.5. 独立数式と文中数式 数式のスタイルは独立数式 文中数式(2 次元)と文中数式(線形)の 3 種類があ り 数式モードの右端の矢印を選ぶとメニューが出てくる

More information

II A A441 : October 02, 2014 Version : Kawahira, Tomoki TA (Kondo, Hirotaka )

II A A441 : October 02, 2014 Version : Kawahira, Tomoki TA (Kondo, Hirotaka ) II 214-1 : October 2, 214 Version : 1.1 Kawahira, Tomoki TA (Kondo, Hirotaka ) http://www.math.nagoya-u.ac.jp/~kawahira/courses/14w-biseki.html pdf 1 2 1 9 1 16 1 23 1 3 11 6 11 13 11 2 11 27 12 4 12 11

More information

0.,,., m Euclid m m. 2.., M., M R 2 ψ. ψ,, R 2 M.,, (x 1 (),, x m ()) R m. 2 M, R f. M (x 1,, x m ), f (x 1,, x m ) f(x 1,, x m ). f ( ). x i : M R.,,

0.,,., m Euclid m m. 2.., M., M R 2 ψ. ψ,, R 2 M.,, (x 1 (),, x m ()) R m. 2 M, R f. M (x 1,, x m ), f (x 1,, x m ) f(x 1,, x m ). f ( ). x i : M R.,, 2012 10 13 1,,,.,,.,.,,. 2?.,,. 1,, 1. (θ, φ), θ, φ (0, π),, (0, 2π). 1 0.,,., m Euclid m m. 2.., M., M R 2 ψ. ψ,, R 2 M.,, (x 1 (),, x m ()) R m. 2 M, R f. M (x 1,, x m ), f (x 1,, x m ) f(x 1,, x m ).

More information

cpall.dvi

cpall.dvi 137 A L A TEX LATEX 1 TEX 2 (American Mathematical Society) L A TEX L. Lamport, L A TEX: a Document Preparation System, Addison Wesley (1986). Edgar Cooke, L A TEX (1990). LATEX2 ε (2003). LATEX A.1 L

More information

No δs δs = r + δr r = δr (3) δs δs = r r = δr + u(r + δr, t) u(r, t) (4) δr = (δx, δy, δz) u i (r + δr, t) u i (r, t) = u i x j δx j (5) δs 2

No δs δs = r + δr r = δr (3) δs δs = r r = δr + u(r + δr, t) u(r, t) (4) δr = (δx, δy, δz) u i (r + δr, t) u i (r, t) = u i x j δx j (5) δs 2 No.2 1 2 2 δs δs = r + δr r = δr (3) δs δs = r r = δr + u(r + δr, t) u(r, t) (4) δr = (δx, δy, δz) u i (r + δr, t) u i (r, t) = u i δx j (5) δs 2 = δx i δx i + 2 u i δx i δx j = δs 2 + 2s ij δx i δx j

More information

1 (Berry,1975) 2-6 p (S πr 2 )p πr 2 p 2πRγ p p = 2γ R (2.5).1-1 : : : : ( ).2 α, β α, β () X S = X X α X β (.1) 1 2

1 (Berry,1975) 2-6 p (S πr 2 )p πr 2 p 2πRγ p p = 2γ R (2.5).1-1 : : : : ( ).2 α, β α, β () X S = X X α X β (.1) 1 2 2005 9/8-11 2 2.2 ( 2-5) γ ( ) γ cos θ 2πr πρhr 2 g h = 2γ cos θ ρgr (2.1) γ = ρgrh (2.2) 2 cos θ θ cos θ = 1 (2.2) γ = 1 ρgrh (2.) 2 2. p p ρgh p ( ) p p = p ρgh (2.) h p p = 2γ r 1 1 (Berry,1975) 2-6

More information

(Compton Scattering) Beaming 1 exp [i (k x ωt)] k λ k = 2π/λ ω = 2πν k = ω/c k x ωt ( ω ) k α c, k k x ωt η αβ k α x β diag( + ++) x β = (ct, x) O O x

(Compton Scattering) Beaming 1 exp [i (k x ωt)] k λ k = 2π/λ ω = 2πν k = ω/c k x ωt ( ω ) k α c, k k x ωt η αβ k α x β diag( + ++) x β = (ct, x) O O x Compton Scattering Beaming exp [i k x ωt] k λ k π/λ ω πν k ω/c k x ωt ω k α c, k k x ωt η αβ k α x β diag + ++ x β ct, x O O x O O v k α k α β, γ k γ k βk, k γ k + βk k γ k k, k γ k + βk 3 k k 4 k 3 k

More information

6 Tgif William Chia-Wei Chang tgif 3.0 pixmap URL Tgif 6.1: Tgif

6 Tgif William Chia-Wei Chang tgif 3.0 pixmap URL Tgif 6.1: Tgif 6 Tgif 121 6.1 Tgif............................ 122 6.2..................... 123 6.2.1...................... 126 6.2.2 Dash, Type, Style, Width.......... 127 6.2.3 Pen, Fill............. 128 6.2.4 Text......................

More information

II Matlab Karel Švadlenka 2018 Contents

II Matlab Karel Švadlenka 2018 Contents II Matlab 2018 5 5 Karel Švadlenka 2018 Contents 1 2 2 1 2 2.1......................................... 2 2.2...................................... 3 2.3................................... 4 2.4.............................

More information

467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 B =(1+R ) B +G τ C C G τ R B C = a R +a W W ρ W =(1+R ) B +(1+R +δ ) (1 ρ) L B L δ B = λ B + μ (W C λ B )

More information

Note.tex 2008/09/19( )

Note.tex 2008/09/19( ) 1 20 9 19 2 1 5 1.1........................ 5 1.2............................. 8 2 9 2.1............................. 9 2.2.............................. 10 3 13 3.1.............................. 13 3.2..................................

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

n (1.6) i j=1 1 n a ij x j = b i (1.7) (1.7) (1.4) (1.5) (1.4) (1.7) u, v, w ε x, ε y, ε x, γ yz, γ zx, γ xy (1.8) ε x = u x ε y = v y ε z = w z γ yz

n (1.6) i j=1 1 n a ij x j = b i (1.7) (1.7) (1.4) (1.5) (1.4) (1.7) u, v, w ε x, ε y, ε x, γ yz, γ zx, γ xy (1.8) ε x = u x ε y = v y ε z = w z γ yz 1 2 (a 1, a 2, a n ) (b 1, b 2, b n ) A (1.1) A = a 1 b 1 + a 2 b 2 + + a n b n (1.1) n A = a i b i (1.2) i=1 n i 1 n i=1 a i b i n i=1 A = a i b i (1.3) (1.3) (1.3) (1.1) (ummation convention) a 11 x

More information

1. 1 A : l l : (1) l m (m 3) (2) m (3) n (n 3) (4) A α, β γ α β + γ = 2 m l lm n nα nα = lm. α = lm n. m lm 2β 2β = lm β = lm 2. γ l 2. 3

1. 1 A : l l : (1) l m (m 3) (2) m (3) n (n 3) (4) A α, β γ α β + γ = 2 m l lm n nα nα = lm. α = lm n. m lm 2β 2β = lm β = lm 2. γ l 2. 3 1. 1 A : l l : (1) l m (m 3) (2) m (3) n (n 3) (4) A 2 1 2 1 2 3 α, β γ α β + γ = 2 m l lm n nα nα = lm. α = lm n. m lm 2β 2β = lm β = lm 2. γ l 2. 3 4 P, Q R n = {(x 1, x 2,, x n ) ; x 1, x 2,, x n R}

More information

2 A I / 58

2 A I / 58 2 A 2018.07.12 I 2 2018.07.12 1 / 58 I 2 2018.07.12 2 / 58 π-computer gnuplot 5/31 1 π-computer -X ssh π-computer gnuplot I 2 2018.07.12 3 / 58 gnuplot> gnuplot> plot sin(x) I 2 2018.07.12 4 / 58 cp -r

More information

( ) ) ) ) 5) 1 J = σe 2 6) ) 9) 1955 Statistical-Mechanical Theory of Irreversible Processes )

( ) ) ) ) 5) 1 J = σe 2 6) ) 9) 1955 Statistical-Mechanical Theory of Irreversible Processes ) ( 3 7 4 ) 2 2 ) 8 2 954 2) 955 3) 5) J = σe 2 6) 955 7) 9) 955 Statistical-Mechanical Theory of Irreversible Processes 957 ) 3 4 2 A B H (t) = Ae iωt B(t) = B(ω)e iωt B(ω) = [ Φ R (ω) Φ R () ] iω Φ R (t)

More information

201711grade1ouyou.pdf

201711grade1ouyou.pdf 2017 11 26 1 2 52 3 12 13 22 23 32 33 42 3 5 3 4 90 5 6 A 1 2 Web Web 3 4 1 2... 5 6 7 7 44 8 9 1 2 3 1 p p >2 2 A 1 2 0.6 0.4 0.52... (a) 0.6 0.4...... B 1 2 0.8-0.2 0.52..... (b) 0.6 0.52.... 1 A B 2

More information

( ) ( )

( ) ( ) 20 21 2 8 1 2 2 3 21 3 22 3 23 4 24 5 25 5 26 6 27 8 28 ( ) 9 3 10 31 10 32 ( ) 12 4 13 41 0 13 42 14 43 0 15 44 17 5 18 6 18 1 1 2 2 1 2 1 0 2 0 3 0 4 0 2 2 21 t (x(t) y(t)) 2 x(t) y(t) γ(t) (x(t) y(t))

More information

TOP URL 1

TOP URL   1 TOP URL http://amonphys.web.fc.com/ 1 19 3 19.1................... 3 19.............................. 4 19.3............................... 6 19.4.............................. 8 19.5.............................

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

untitled

untitled ( 9:: 3:6: (k 3 45 k F m tan 45 k 45 k F m tan S S F m tan( 6.8k tan k F m ( + k tan 373 S S + Σ Σ 3 + Σ os( sin( + Σ sin( os( + sin( os( p z ( γ z + K pzdz γ + K γ K + γ + 9 ( 9 (+ sin( sin { 9 ( } 4

More information

4 Mindlin -Reissner 4 δ T T T εσdω= δ ubdω+ δ utd Γ Ω Ω Γ T εσ (1.1) ε σ u b t 3 σ ε. u T T T = = = { σx σ y σ z τxy τ yz τzx} { εx εy εz γ xy γ yz γ

4 Mindlin -Reissner 4 δ T T T εσdω= δ ubdω+ δ utd Γ Ω Ω Γ T εσ (1.1) ε σ u b t 3 σ ε. u T T T = = = { σx σ y σ z τxy τ yz τzx} { εx εy εz γ xy γ yz γ Mindlin -Rissnr δ εσd δ ubd+ δ utd Γ Γ εσ (.) ε σ u b t σ ε. u { σ σ σ z τ τ z τz} { ε ε εz γ γ z γ z} { u u uz} { b b bz} b t { t t tz}. ε u u u u z u u u z u u z ε + + + (.) z z z (.) u u NU (.) N U

More information

http://www.ike-dyn.ritsumei.ac.jp/ hyoo/wave.html 1 1, 5 3 1.1 1..................................... 3 1.2 5.1................................... 4 1.3.......................... 5 1.4 5.2, 5.3....................

More information

AC Modeling and Control of AC Motors Seiji Kondo, Member 1. q q (1) PM (a) N d q Dept. of E&E, Nagaoka Unive

AC Modeling and Control of AC Motors Seiji Kondo, Member 1. q q (1) PM (a) N d q Dept. of E&E, Nagaoka Unive AC Moeling an Control of AC Motors Seiji Kono, Member 1. (1) PM 33 54 64. 1 11 1(a) N 94 188 163 1 Dept. of E&E, Nagaoka University of Technology 163 1, Kamitomioka-cho, Nagaoka, Niigata 94 188 (a) 巻数

More information

7 π L int = gψ(x)ψ(x)φ(x) + (7.4) [ ] p ψ N = n (7.5) π (π +,π 0,π ) ψ (σ, σ, σ )ψ ( A) σ τ ( L int = gψψφ g N τ ) N π * ) (7.6) π π = (π, π, π ) π ±

7 π L int = gψ(x)ψ(x)φ(x) + (7.4) [ ] p ψ N = n (7.5) π (π +,π 0,π ) ψ (σ, σ, σ )ψ ( A) σ τ ( L int = gψψφ g N τ ) N π * ) (7.6) π π = (π, π, π ) π ± 7 7. ( ) SU() SU() 9 ( MeV) p 98.8 π + π 0 n 99.57 9.57 97.4 497.70 δm m 0.4%.% 0.% 0.8% π 9.57 4.96 Σ + Σ 0 Σ 89.6 9.46 K + K 0 49.67 (7.) p p = αp + βn, n n = γp + δn (7.a) [ ] p ψ ψ = Uψ, U = n [ α

More information

all.dvi

all.dvi 72 9 Hooke,,,. Hooke. 9.1 Hooke 1 Hooke. 1, 1 Hooke. σ, ε, Young. σ ε (9.1), Young. τ γ G τ Gγ (9.2) X 1, X 2. Poisson, Poisson ν. ν ε 22 (9.) ε 11 F F X 2 X 1 9.1: Poisson 9.1. Hooke 7 Young Poisson G

More information

3 3.1 3 [Set type:] 2 c 1 2 3 XYDY DY D dispersion 4 File New 3 NEW 3:

3 3.1 3 [Set type:] 2 c 1 2 3 XYDY DY D dispersion 4 File New 3 NEW 3: 2 3 2 Dt Import ASCII [Red sets] [Directories 2 [Files] 2 b OK 1 X 2 Y 2 Import ASCII b c 2: 3 3.1 3 [Set type:] 2 c 1 2 3 XYDY DY D dispersion 4 File New 3 NEW 3: 4 5 5.1 4 4 4: 5 5.2 Plot Axis properties

More information

TEX 6.2. EQUATIONS Y=[ Y=] equation y = ax + b y = ax + b (6.1) Y=[ Y=] Y=nonumber eqnarray 3 2 eqnarray equation Y=Y= eqnarray y = ax + b (6.2) y = x

TEX 6.2. EQUATIONS Y=[ Y=] equation y = ax + b y = ax + b (6.1) Y=[ Y=] Y=nonumber eqnarray 3 2 eqnarray equation Y=Y= eqnarray y = ax + b (6.2) y = x 6 ArkOak TEX L A TEX2e 2015 11 4 6.1 making title 6.2 Equations 6.2.1 y = ax + b $ $ x x $ 6.2.2 Y=[ Y=] equation 1 TEX 6.2. EQUATIONS Y=[ Y=] equation y = ax + b y = ax + b (6.1) Y=[ Y=] Y=nonumber eqnarray

More information

H 0 H = H 0 + V (t), V (t) = gµ B S α qb e e iωt i t Ψ(t) = [H 0 + V (t)]ψ(t) Φ(t) Ψ(t) = e ih0t Φ(t) H 0 e ih0t Φ(t) + ie ih0t t Φ(t) = [

H 0 H = H 0 + V (t), V (t) = gµ B S α qb e e iωt i t Ψ(t) = [H 0 + V (t)]ψ(t) Φ(t) Ψ(t) = e ih0t Φ(t) H 0 e ih0t Φ(t) + ie ih0t t Φ(t) = [ 3 3. 3.. H H = H + V (t), V (t) = gµ B α B e e iωt i t Ψ(t) = [H + V (t)]ψ(t) Φ(t) Ψ(t) = e iht Φ(t) H e iht Φ(t) + ie iht t Φ(t) = [H + V (t)]e iht Φ(t) Φ(t) i t Φ(t) = V H(t)Φ(t), V H (t) = e iht V (t)e

More information

0406_total.pdf

0406_total.pdf 59 7 7.1 σ-ω σ-ω σ ω σ = σ(r), ω µ = δ µ,0 ω(r) (6-4) (iγ µ µ m U(r) γ 0 V (r))ψ(x) = 0 (7-1) U(r) = g σ σ(r), V (r) = g ω ω(r) σ(r) ω(r) (6-3) ( 2 + m 2 σ)σ(r) = g σ ψψ (7-2) ( 2 + m 2 ω)ω(r) = g ω ψγ

More information

: 2005 ( ρ t +dv j =0 r m m r = e E( r +e r B( r T 208 T = d E j 207 ρ t = = = e t δ( r r (t e r r δ( r r (t e r ( r δ( r r (t dv j =

: 2005 ( ρ t +dv j =0 r m m r = e E( r +e r B( r T 208 T = d E j 207 ρ t = = = e t δ( r r (t e r r δ( r r (t e r ( r δ( r r (t dv j = 72 Maxwell. Maxwell e r ( =,,N Maxwell rot E + B t = 0 rot H D t = j dv D = ρ dv B = 0 D = ɛ 0 E H = μ 0 B ρ( r = j( r = N e δ( r r = N e r δ( r r = : 2005 ( 2006.8.22 73 207 ρ t +dv j =0 r m m r = e E(

More information

dx dt = f x,t ( ) t

dx dt = f x,t ( ) t MATLAB 1. 2. Runge-Kutta 3. 1. 2. 3. dx dt = f x,t ( ) t dx( t) dt = lim Δt x( t + Δt) x( t) Δt t = nδt n = 0,1,2,3,4,5, x = x( nδt) n Δt dx ( ) dt = f x,t x n +1 x n Δt = f ( x,nδt) n 1 x n = x 0 n =

More information

2 I I / 61

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

More information

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:連続体理論(弾性,粘性) The Physics of Liquid Crystals P. G. de Gennes and J. Prost (Oxford University Press, 1993) Liquid crystals are beautiful and mysterious; I am fond of them for both reasons. My hope is that some readers

More information

第 1 章 書 類 の 作 成 倍 角 文 字 SGML 系 書 類 のみ 使 用 できます 文 字 修 飾 改 行 XML 系 書 類 では 文 字 修 飾 ( 半 角 / 下 線 / 上 付 / 下 付 )と 改 行 が 使 用 できます SGML 系 書 類 では 文 字 修 飾 ( 半 角

第 1 章 書 類 の 作 成 倍 角 文 字 SGML 系 書 類 のみ 使 用 できます 文 字 修 飾 改 行 XML 系 書 類 では 文 字 修 飾 ( 半 角 / 下 線 / 上 付 / 下 付 )と 改 行 が 使 用 できます SGML 系 書 類 では 文 字 修 飾 ( 半 角 1.2 HTML 文 書 の 作 成 基 準 1.2.2 手 続 書 類 で 使 用 できる 文 字 全 角 文 字 手 続 書 類 で 使 用 できる 文 字 種 類 文 字 修 飾 について 説 明 します 参 考 JIS コードについては 付 録 J JIS-X0208-1997 コード 表 をご 覧 ください XML 系 SGML 系 共 通 JIS-X0208-1997 情 報 交 換 用

More information

量子力学 問題

量子力学 問題 3 : 203 : 0. H = 0 0 2 6 0 () = 6, 2 = 2, 3 = 3 3 H 6 2 3 ϵ,2,3 (2) ψ = (, 2, 3 ) ψ Hψ H (3) P i = i i P P 2 = P 2 P 3 = P 3 P = O, P 2 i = P i (4) P + P 2 + P 3 = E 3 (5) i ϵ ip i H 0 0 (6) R = 0 0 [H,

More information

一般演題(ポスター)

一般演題(ポスター) 6 5 13 : 00 14 : 00 A μ 13 : 00 14 : 00 A β β β 13 : 00 14 : 00 A 13 : 00 14 : 00 A 13 : 00 14 : 00 A β 13 : 00 14 : 00 A β 13 : 00 14 : 00 A 13 : 00 14 : 00 A β 13 : 00 14 : 00 A 13 : 00 14 : 00 A

More information

A = A x x + A y y + A, B = B x x + B y y + B, C = C x x + C y y + C..6 x y A B C = A x x + A y y + A B x B y B C x C y C { B = A x x + A y y + A y B B

A = A x x + A y y + A, B = B x x + B y y + B, C = C x x + C y y + C..6 x y A B C = A x x + A y y + A B x B y B C x C y C { B = A x x + A y y + A y B B 9 7 A = A x x + A y y + A, B = B x x + B y y + B, C = C x x + C y y + C..6 x y A B C = A x x + A y y + A B x B y B C x C y C { B = A x x + A y y + A y B B x x B } B C y C y + x B y C x C C x C y B = A

More information

W u = u(x, t) u tt = a 2 u xx, a > 0 (1) D := {(x, t) : 0 x l, t 0} u (0, t) = 0, u (l, t) = 0, t 0 (2)

W u = u(x, t) u tt = a 2 u xx, a > 0 (1) D := {(x, t) : 0 x l, t 0} u (0, t) = 0, u (l, t) = 0, t 0 (2) 3 215 4 27 1 1 u u(x, t) u tt a 2 u xx, a > (1) D : {(x, t) : x, t } u (, t), u (, t), t (2) u(x, ) f(x), u(x, ) t 2, x (3) u(x, t) X(x)T (t) u (1) 1 T (t) a 2 T (t) X (x) X(x) α (2) T (t) αa 2 T (t) (4)

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

.2 ρ dv dt = ρk grad p + 3 η grad (divv) + η 2 v.3 divh = 0, rote + c H t = 0 dive = ρ, H = 0, E = ρ, roth c E t = c ρv E + H c t = 0 H c E t = c ρv T

.2 ρ dv dt = ρk grad p + 3 η grad (divv) + η 2 v.3 divh = 0, rote + c H t = 0 dive = ρ, H = 0, E = ρ, roth c E t = c ρv E + H c t = 0 H c E t = c ρv T NHK 204 2 0 203 2 24 ( ) 7 00 7 50 203 2 25 ( ) 7 00 7 50 203 2 26 ( ) 7 00 7 50 203 2 27 ( ) 7 00 7 50 I. ( ν R n 2 ) m 2 n m, R = e 2 8πε 0 hca B =.09737 0 7 m ( ν = ) λ a B = 4πε 0ħ 2 m e e 2 = 5.2977

More information

e a b a b b a a a 1 a a 1 = a 1 a = e G G G : x ( x =, 8, 1 ) x 1,, 60 θ, ϕ ψ θ G G H H G x. n n 1 n 1 n σ = (σ 1, σ,..., σ N ) i σ i i n S n n = 1,,

e a b a b b a a a 1 a a 1 = a 1 a = e G G G : x ( x =, 8, 1 ) x 1,, 60 θ, ϕ ψ θ G G H H G x. n n 1 n 1 n σ = (σ 1, σ,..., σ N ) i σ i i n S n n = 1,, 01 10 18 ( ) 1 6 6 1 8 8 1 6 1 0 0 0 0 1 Table 1: 10 0 8 180 1 1 1. ( : 60 60 ) : 1. 1 e a b a b b a a a 1 a a 1 = a 1 a = e G G G : x ( x =, 8, 1 ) x 1,, 60 θ, ϕ ψ θ G G H H G x. n n 1 n 1 n σ = (σ 1,

More information

Hanbury-Brown Twiss (ver. 2.0) van Cittert - Zernike mutual coherence

Hanbury-Brown Twiss (ver. 2.0) van Cittert - Zernike mutual coherence Hanbury-Brown Twiss (ver. 2.) 25 4 4 1 2 2 2 2.1 van Cittert - Zernike..................................... 2 2.2 mutual coherence................................. 4 3 Hanbury-Brown Twiss ( ) 5 3.1............................................

More information

Mathematical Logic I 12 Contents I Zorn

Mathematical Logic I 12 Contents I Zorn Mathematical Logic I 12 Contents I 2 1 3 1.1............................. 3 1.2.......................... 5 1.3 Zorn.................. 5 2 6 2.1.............................. 6 2.2..............................

More information

July 28, H H 0 H int = H H 0 H int = H int (x)d 3 x Schrödinger Picture Ψ(t) S =e iht Ψ H O S Heisenberg Picture Ψ H O H (t) =e iht O S e i

July 28, H H 0 H int = H H 0 H int = H int (x)d 3 x Schrödinger Picture Ψ(t) S =e iht Ψ H O S Heisenberg Picture Ψ H O H (t) =e iht O S e i July 8, 4. H H H int H H H int H int (x)d 3 x Schrödinger Picture Ψ(t) S e iht Ψ H O S Heisenberg Picture Ψ H O H (t) e iht O S e iht Interaction Picture Ψ(t) D e iht Ψ(t) S O D (t) e iht O S e ih t (Dirac

More information

85 4

85 4 85 4 86 Copright c 005 Kumanekosha 4.1 ( ) ( t ) t, t 4.1.1 t Step! (Step 1) (, 0) (Step ) ±V t (, t) I Check! P P V t π 54 t = 0 + V (, t) π θ : = θ : π ) θ = π ± sin ± cos t = 0 (, 0) = sin π V + t +V

More information

I

I I 6 4 10 1 1 1.1............... 1 1................ 1 1.3.................... 1.4............... 1.4.1.............. 1.4................. 1.4.3........... 3 1.4.4.. 3 1.5.......... 3 1.5.1..............

More information

TOP URL 1

TOP URL   1 TOP URL http://amonphys.web.fc2.com/ 1 6 3 6.1................................ 3 6.2.............................. 4 6.3................................ 5 6.4.......................... 6 6.5......................

More information

Mott散乱によるParity対称性の破れを検証

Mott散乱によるParity対称性の破れを検証 Mott Parity P2 Mott target Mott Parity Parity Γ = 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 t P P ),,, ( 3 2 1 0 1 γ γ γ γ γ γ ν ν µ µ = = Γ 1 : : : Γ P P P P x x P ν ν µ µ vector axial vector ν ν µ µ γ γ Γ ν γ

More information

tomocci ,. :,,,, Lie,,,, Einstein, Newton. 1 M n C. s, M p. M f, p d ds f = dxµ p ds µ f p, X p = X µ µ p = dxµ ds µ p. µ, X µ.,. p,. T M p.

tomocci ,. :,,,, Lie,,,, Einstein, Newton. 1 M n C. s, M p. M f, p d ds f = dxµ p ds µ f p, X p = X µ µ p = dxµ ds µ p. µ, X µ.,. p,. T M p. tomocci 18 7 5...,. :,,,, Lie,,,, Einstein, Newton. 1 M n C. s, M p. M f, p d ds f = dxµ p ds µ f p, X p = X µ µ p = dxµ ds µ p. µ, X µ.,. p,. T M p. M F (M), X(F (M)).. T M p e i = e µ i µ. a a = a i

More information

数値計算:常微分方程式

数値計算:常微分方程式 ( ) 1 / 82 1 2 3 4 5 6 ( ) 2 / 82 ( ) 3 / 82 C θ l y m O x mg λ ( ) 4 / 82 θ t C J = ml 2 C mgl sin θ θ C J θ = mgl sin θ = θ ( ) 5 / 82 ω = θ J ω = mgl sin θ ω J = ml 2 θ = ω, ω = g l sin θ = θ ω ( )

More information

4. ϵ(ν, T ) = c 4 u(ν, T ) ϵ(ν, T ) T ν π4 Planck dx = 0 e x 1 15 U(T ) x 3 U(T ) = σt 4 Stefan-Boltzmann σ 2π5 k 4 15c 2 h 3 = W m 2 K 4 5.

4. ϵ(ν, T ) = c 4 u(ν, T ) ϵ(ν, T ) T ν π4 Planck dx = 0 e x 1 15 U(T ) x 3 U(T ) = σt 4 Stefan-Boltzmann σ 2π5 k 4 15c 2 h 3 = W m 2 K 4 5. A 1. Boltzmann Planck u(ν, T )dν = 8πh ν 3 c 3 kt 1 dν h 6.63 10 34 J s Planck k 1.38 10 23 J K 1 Boltzmann u(ν, T ) T ν e hν c = 3 10 8 m s 1 2. Planck λ = c/ν Rayleigh-Jeans u(ν, T )dν = 8πν2 kt dν c

More information

i I Octave ii................................2............................ 4.3...................................... 7.4...................................... 9 2 2....................................

More information

110 $\ovalbox{\tt\small REJECT}^{\mathrm{i}}1W^{\mathrm{p}}\mathrm{n}$ 2 DDS 2 $(\mathrm{i}\mathrm{y}\mu \mathrm{i})$ $(\mathrm{m}\mathrm{i})$ 2

110 $\ovalbox{\tt\small REJECT}^{\mathrm{i}}1W^{\mathrm{p}}\mathrm{n}$ 2 DDS 2 $(\mathrm{i}\mathrm{y}\mu \mathrm{i})$ $(\mathrm{m}\mathrm{i})$ 2 1539 2007 109-119 109 DDS (Drug Deltvery System) (Osamu Sano) $\mathrm{r}^{\mathrm{a}_{w^{1}}}$ $\mathrm{i}\mathrm{h}$ 1* ] $\dot{n}$ $\mathrm{a}g\mathrm{i}$ Td (Yisaku Nag$) JST CREST 1 ( ) DDS ($\mathrm{m}_{\mathrm{u}\mathrm{g}}\propto

More information

05Mar2001_tune.dvi

05Mar2001_tune.dvi 2001 3 5 COD 1 1.1 u d2 u + ku =0 (1) dt2 u = a exp(pt) (2) p = ± k (3) k>0k = ω 2 exp(±iωt) (4) k

More information

he T N/ N/

he T N/ N/ 6.000 1.000 0.800 0.000 0.500 1.500 3.000 1.200 0.000 0.000 0.000 0.000 0.000-0.100 he 1.500 T 0.100 1.50 0.00 2 24.5 N/ 3 18.0 N/ 3 28.0 18.7 18.7 14.0 14.0 X() 20.000 Y() 0.000 (kn/2) 10.000 0.000 kn

More information

18 I ( ) (1) I-1,I-2,I-3 (2) (3) I-1 ( ) (100 ) θ ϕ θ ϕ m m l l θ ϕ θ ϕ 2 g (1) (2) 0 (3) θ ϕ (4) (3) θ(t) = A 1 cos(ω 1 t + α 1 ) + A 2 cos(ω 2 t + α

18 I ( ) (1) I-1,I-2,I-3 (2) (3) I-1 ( ) (100 ) θ ϕ θ ϕ m m l l θ ϕ θ ϕ 2 g (1) (2) 0 (3) θ ϕ (4) (3) θ(t) = A 1 cos(ω 1 t + α 1 ) + A 2 cos(ω 2 t + α 18 I ( ) (1) I-1,I-2,I-3 (2) (3) I-1 ( ) (100 ) θ ϕ θ ϕ m m l l θ ϕ θ ϕ 2 g (1) (2) 0 (3) θ ϕ (4) (3) θ(t) = A 1 cos(ω 1 t + α 1 ) + A 2 cos(ω 2 t + α 2 ), ϕ(t) = B 1 cos(ω 1 t + α 1 ) + B 2 cos(ω 2 t

More information

gnuplot gnuplot 1 3 y = x 3 + 3x 2 2 y = sin x sin(x) x*x*x+3*x*x

gnuplot gnuplot 1 3 y = x 3 + 3x 2 2 y = sin x sin(x) x*x*x+3*x*x gnuplot gnuplot y = x + x y = sin x.8 sin(x) 8 7 6 x*x*x+*x*x.6.. -. -. -.6 -.8 - - - - - - - -. - -. - -.. gnuplot gnuplot> set xrange[-.:.] gnuplot> plot x**+*x** y = x x gnuolot> reset gnuplot> plot

More information