Microsoft Word - gnuplot

Size: px
Start display at page:

Download "Microsoft Word - gnuplot"

Transcription

1 GNUPLOT の使い方 I. 初期設定 GNUPLOT を最初に起動させたときの Window の文字は小さいので使い難い そこで 文字フォントのサイズを設定します 1.GNUPLOT を起動させます ( 右のような Window が起動します ) 2. 白い領域のどこでも構わないので ポインタを移動して マウスの右ボタンをクリックします ( 右のようにメニューが起動します ) 3. Choose Font... を選び フォントの大きさを設定し [OK] ボタンをクリックする 4. 再度 白い領域でマウスの右ボタンをクリックし Update wgnuplot.ini を選択します ( この作業をしないと次回 Gnuplot を起動させたとき 再度フォント設定が必要になります )

2 II. 2 次元関数グラフの描画 (1) 2 次元関数グラフの描画 1 gnuplot > plot x**2 [Enter] plot 関数式 ( 変数は x) **2 は 2 乗を表す (2) 2 次元関数グラフの描画 2 gnuplot > f(x)=x**2[enter] 関数を定義してから描画 何回も関数を使うとき gnuplot > plot x**2 [Enter] 便利 (3) x の範囲を指定 gnuplot > plot [-1:1] x**2[enter] [ ] で x の範囲を指定 (4) x と y の範囲を指定 gnuplot > set xrange [-1:1] [Enter] gnuplot > set yrange [-1:1] [Enter] gnuplot > plot x**2[enter] x の範囲を指定 y の範囲を指定 (5) 複数の関数のグラフを描画 gnuplot > plot x**2[enter] gnuplot > replot x[enter] (6) サンプル点の数の設定 gnuplot > plot sin(10*x)[enter] gnuplot > set samples 1000[Enter] デフォルトではサンプル点の数は 100 になっており それを 1000 に変更 gnuplot > plot sin(10*x)[enter] III.2 次元データをグラフに描画 次のページからデータファイル gnu-data.txt をダウンロードして ドキュメントフォルダに保存する データファイルは次のように x 座標 y 座標を 1 行に書き x 座標と y 座標の間はスペースで区切ること

3 (1) 2 次元データのグラフ描画 gnuplot > plot c:/users/???/documents/gnu-data.txt [Enter] plot ファイル名 (2) 各データ位置をマーカーで表示 gnuplot > plot c:/users/???/documents/gnu-data.txt with points[enter] (3) 隣り合うデータ位置を直線で結んで表示 gnuplot > plot c:/users/???/documents/gnu-data.txt with lines[enter] (4) 隣り合うデータ位置を直線で結び, 各データ位置をマーカで表示 Gnuplot > plot c:/users/???/documents/gnu-data.txt with linespoints[enter] (5) 各データ位置から x 軸へ垂線を引く gnuplot > plot c:/users/???/documents/gnu-data.txt with impulses[enter] (6) 各データ位置を点で表示 gnuplot > plot c:/users/???/documents/gnu-data.txt with dots[enter] (7) 隣り合うデータ位置を x,y 軸に平行な線分で結ぶ gnuplot > plot c:/users/???/documents/gnu-data.txt with steps[enter] (8) 棒グラフの作成 gnuplot > plot c:/users/???/documents/gnu-data.txt with boxes[enter] IV. 媒介変数表示 (1) 垂直線の表示 媒介変数表示に設定 gnuplot > const=3[enter] gnuplot > set trange [1:4][Enter] gnuplot > set xrange [0:5][Enter] gnuplot > set yrange [0:5][Enter] gnuplot > plot const,t[enter]

4 (2) 円の表示 gnuplot > set size square[enter] 表示領域を正方形に設定 gnuplot > set trange [0:2*pi][Enter] pi は円周率 gnuplot > set xrange [-1:1][Enter] gnuplot > set yrange [-1:1][Enter] gnuplot > plot cos(t),sin(t)[enter] (3) 正 n 角形の表示 ( ここでは n=7) gnuplot > set size square[enter] gnuplot > set trange [0:2*pi][Enter] gnuplot > set xrange [-1:1][Enter] gnuplot > set yrange [-1:1][Enter] gnuplot > set samples 8[Enter] サンプル数 =n+1 gnuplot > plot cos(t),sin(t)[enter] (4) 渦巻の表示 gnuplot > set size square[enter] gnuplot > set trange [0:10*pi][Enter] gnuplot > set xrange [-10*pi:10*pi][Enter] gnuplot > set yrange [-10*pi:10*pi][Enter] gnuplot > set samples 1000[Enter] gnuplot > plot t*cos(t),t*sin(t)[enter] 4) Cardioid の表示 gnuplot > set size square[enter] gnuplot > set trange [0:2*pi][Enter] gnuplot > set xrange [-2:2][Enter] gnuplot > set yrange [-2:2][Enter] gnuplot > set samples 1000[Enter] gnuplot > r(t)=1+cos(t)[enter] gnuplot > plot r(t)*cos(t),r(t)*sin(t)[enter]

5 V. 3 次元関数グラフの描画 (1) 3 次元関数グラフの描画 gnuplot > splot sin(x)*(1-y*y) [Enter] splot 関数式 ( 変数は x,y) グラフをドラッグしたままマウスを動かすとグラフも動く (2) サンプル点の数の設定 gnuplot > set isosamples 1000[Enter] gnuplot > splot sin(x)*(1-y*y) [Enter] サンプル数の設定 (3) x,y,z の範囲を指定 1 gnuplot > splot [0:1][0:1][0:1] exp(-x)*(1-y*y)[enter] splot [x の範囲 ] [y の範囲 ] [z の範囲 ] 関数 (4) x,y,z の範囲を指定 2 gnuplot > set xrange [0:1] [Enter] x の範囲を指定 gnuplot > set yrange [0:1] [Enter] y の範囲を指定 gnuplot > set zrange [0:3] [Enter] z の範囲を指定 gnuplot > splot exp(-x)*(1-y*y)[enter] (5) 等高線を底面に表示 gnuplot > set contour base[enter] gnuplot > splot sin(x)*(1-y*y)[enter] (6) 等高線を表面に表示 gnuplot > set contour surface[enter] gnuplot > splot sin(x)*(1-y*y)[enter] (7) 等高線を表面と底面の両方に表示 gnuplot > set contour both[enter] gnuplot > splot sin(x)*(1-y*y)[enter] (8) 等高線の本数の設定 gnuplot > set cntrparam levels 20[Enter] 等高線の数を 20 に設定 gnuplot > set contour[enter] gnuplot > splot x*x+y*y[enter]

6 (9) 等高線の描く高さの初期値 増分 終値の設定 gnuplot > set cntrparam levels incremental 10,5,30[Enter] 等高線を描く初期値を 10 増分を 5 終値を 30 に設定 gnuplot > set contour[enter] gnuplot > splot x*x+y*y[enter] (10) 等高線の描く高さを直接指定 gnuplot > set cntrparam levels discrete 5,30,50,75,90[Enter] 等高線を描く高さを 5,30,50,75,90 に設定 gnuplot > set contour[enter] gnuplot > splot x*x+y*y[enter] (11) 隠面処理 gnuplot > splot x*x+2*y*y[enter] gnuplot > set hidden3d[enter] 隠面処理を設定 gnuplot > splot x*x+2*y*y[enter] gnuplot > unset hidden3d[enter] 隠面処理を解除 gnuplot > splot x*x+2*y*y[enter] VI. グラフの体裁を整える gnuplot > set title Graph of sin(x) [Enter] タイトルを設定 gnuplot > set xlabel x [Enter] x 軸のラベルを設定 gnuplot > set ylabel y [Enter] y 軸のラベルを設定 gnuplot > set xzeroaxis[enter] x 軸 (y=0) の表示を設定 gnuplot > set yzeroaxis[enter] y 軸 (x=0) の表示を設定 gnuplot > unset border[enter] 枠の非表示を設定 gnuplot > set offsets 1,1,1,1[Enter] 余白を設定 gnuplot > set grid[enter] グリッド線の表示を設定 gnuplot > set xrange [-pi:pi][enter] gnuplot > plot sin(x)[enter]

7 VII. グラフを画像ファイルで保存 グラフが表示されている状態であることを確認 gnuplot > set terminal gif[enter] タイトルを設定 gnuplot > set output c:/users/???/documents/gnu-sin.gif [Enter] ファイル名を設定 gnuplot > replot[enter] gnuplot > exit[enter] gnuplot を終了させてから 画像ファイルを確認する

Microsoft PowerPoint - 14Gnuplot.ppt

Microsoft PowerPoint - 14Gnuplot.ppt Gnuplot との連携 Gnuplot による関数の描画 Gnuplot によるデータのプロット Gnuplot による 3-D グラフの描画 Gnuplot による 3-D データのプロット 今日のポイント グラフ描画ソフト gnuplot を体験してみよう Gnuplot とは グラフ描画専用のフリーウェア Windows 版の名称は wgnuplot インストールはフォルダごとコピーするだけ

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

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

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

理工学図書館後期 LS 講習会 きれいなグラフを作ろう! gnuplot 入門

理工学図書館後期 LS 講習会 きれいなグラフを作ろう! gnuplot 入門 理工学図書館後期 LS 講習会 きれいなグラフを作ろう! gnuplot 入門 gnuplot によるグラフ作成 1 gnuplot コマンド入力形式のグラフ作成ツール 豊富な出力形式を装備 研究や実験のデータ整理に便利 本講習の目的 gnuplot の魅力を体験してみよう! 本日の学習事項 2 1. gnuplotの基本的な使い方 gnuplotに慣れよう 2. スクリプトファイルを用いた使用法

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

y2=x2(x+1)-001.ps

y2=x2(x+1)-001.ps gnuplot gnuplot y = x +x y = sinx.8 sin(x) 8 7 6 x*x*x+*x*x.6.. -. -. -.6 -.8 - - - - - - - -. - -. - -.. gnuplot y = cosx gnuplot> set xrange[-.:.] gnuplot> plot x**+*x** gnuolot> reset gnuplot> plot

More information

gnuplot の使い方 gnuplot は汎用的で しかも手軽に使えるプロッティング プログラムです 計算結果をグラフにするとき に非常に便利なので ぜひ覚えてください 1 gnuplot の始め方 終わり方 gnuplot の始め方は ターミナル上のプロンプトの後ろで gnuplot と打つだけ

gnuplot の使い方 gnuplot は汎用的で しかも手軽に使えるプロッティング プログラムです 計算結果をグラフにするとき に非常に便利なので ぜひ覚えてください 1 gnuplot の始め方 終わり方 gnuplot の始め方は ターミナル上のプロンプトの後ろで gnuplot と打つだけ gnuplot の使い方 gnuplot は汎用的で しかも手軽に使えるプロッティング プログラムです 計算結果をグラフにするとき に非常に便利なので ぜひ覚えてください 1 gnuplot の始め方 終わり方 gnuplot の始め方は ターミナル上のプロンプトの後ろで gnuplot と打つだけです すると /home/snaoki> gnuplot G N U P L O T Version

More information

きれいなグラフを作ろう!gnuplot 入門 1. 基本 1.1. プロット :test.plt plot x, sin(x) 1.2. データファイルのプロット 1:data.plt plot "data.dat" 1.3. データファイルのプロット 2:data2.plt plot "data2

きれいなグラフを作ろう!gnuplot 入門 1. 基本 1.1. プロット :test.plt plot x, sin(x) 1.2. データファイルのプロット 1:data.plt plot data.dat 1.3. データファイルのプロット 2:data2.plt plot data2 きれいなグラフを作ろう!gnuplot 入門 1. 基本 1.1. プロット :test.plt plot x, sin(x) 1.2. データファイルのプロット 1:data.plt plot "data.dat" 1.3. データファイルのプロット 2:data2.plt plot "data2.dat" using 1:3 2. 例題 2.1. カラーマップ :color_map.plt #

More information

i ii iii iv v vi vii ( ー ー ) ( ) ( ) ( ) ( ) ー ( ) ( ) ー ー ( ) ( ) ( ) ( ) ( ) 13 202 24122783 3622316 (1) (2) (3) (4) 2483 (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) 11 11 2483 13

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

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

datavis_01_

datavis_01_ データ可視化 I 担当 : 坂本尚久 計算科学演習 A 6 年 4 月 8 日 本資料は昨年の陰山先生の資料に坂本が加筆したものです 内容. 可視化とは 次元データの可視化 次元データの可視化 3 次元データの可視化. gnuplot 入門 X Windowシステムの設定 演習 4 3. 課題 可視化 情報可視化 Information Visualization データ可視化 科学的可視化 Data

More information

Microsoft Word - Grspes…~…j…}…j…–…A…‰6.0.doc

Microsoft Word - Grspes…~…j…}…j…–…A…‰6.0.doc GRAPES ミニマニュアル グラフウィンドウグラフウィンドウにはグラフや図形が表示される. また, 上部のコントロールパレットを用いて, 表示領域や変域の設定, 目盛りの設定, 残像の設定を行うことができる. グラフウィンドウのサイズを変更すると, グラフ表示エリアのサイズが変わる. 下部ステータスバーには, マウスポインタの座標や表示領域が表示される. データパネルデータパネルは, グラフや図形を描くためのデータを管理している.

More information

関数の定義域を制限する 関数のコマンドを入力バーに打つことにより 関数の定義域を制限することが出来ます Function[ < 関数 >, <x の開始値 >, <x の終了値 > ] 例えば f(x) = x 2 2x + 1 ( 1 < x < 4) のグラフを描くには Function[ x^

関数の定義域を制限する 関数のコマンドを入力バーに打つことにより 関数の定義域を制限することが出来ます Function[ < 関数 >, <x の開始値 >, <x の終了値 > ] 例えば f(x) = x 2 2x + 1 ( 1 < x < 4) のグラフを描くには Function[ x^ この節では GeoGebra を用いて関数のグラフを描画する基本事項を扱います 画面下部にある入力バーから式を入力し 後から書式設定により色や名前を整えることが出来ます グラフィックスビューによる作図は 後の章で扱います 1.1 グラフの挿入関数のグラフは 関数 y = f(x) を満たす (x, y) を座標とする全ての点を描くことです 入力バーを用いれば 関数を直接入力することが出来 その関数のグラフを作図することが出来ます

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

2

2 1 2 3 4 5 6 7 8 9 10 I II III 11 IV 12 V 13 VI VII 14 VIII. 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 45 46 47 48 49 50 VII 51 52 53 54 55 56 57 58 59

More information

untitled

untitled i ii iii iv v 43 43 vi 43 vii T+1 T+2 1 viii 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 45 46 47 48 49 50 a) ( ) b) ( ) 51

More information

i

i 14 i ii iii iv v vi 14 13 86 13 12 28 14 16 14 15 31 (1) 13 12 28 20 (2) (3) 2 (4) (5) 14 14 50 48 3 11 11 22 14 15 10 14 20 21 20 (1) 14 (2) 14 4 (3) (4) (5) 12 12 (6) 14 15 5 6 7 8 9 10 7

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 () - 1 - - 2 - - 3 - - 4 - - 5 - 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

More information

というプロンプトだったのが gnuplot> というプロンプトに変わっていることに注意してください gnuplot を終了させるときには gnuplot> というプロンプトの後ろで quit と打ちこみます すると /home/snaoki> のようなプロンプトに戻るはずです 2 グラフを描いてみよ

というプロンプトだったのが gnuplot> というプロンプトに変わっていることに注意してください gnuplot を終了させるときには gnuplot> というプロンプトの後ろで quit と打ちこみます すると /home/snaoki> のようなプロンプトに戻るはずです 2 グラフを描いてみよ gnuplot の使い方 gnuplot は汎用的で しかも手軽に使えるプロッティング プログラムです 計算結果をグラフにするとき に便利なので ぜひ覚えてください 1 gnuplot の始めかた 終わりかた gnuplot の始めるには ターミナル上のプロンプトの後ろで gnuplot と打ちます すると /home/snaoki> gnuplot G N U P L O T Version 4.0

More information

入門ガイド

入門ガイド ii iii iv NEC Corporation 1998 v P A R 1 P A R 2 P A R 3 T T T vi P A R T 4 P A R T 5 P A R T 6 P A R T 7 vii 1P A R T 1 2 2 1 3 1 4 1 1 5 2 3 6 4 1 7 1 2 3 8 1 1 2 3 9 1 2 10 1 1 2 11 3 12 1 2 1 3 4 13

More information

<4D6963726F736F667420506F776572506F696E74202D208376838C835B83938365815B835683878393312E707074205B8CDD8AB78382815B83685D>

<4D6963726F736F667420506F776572506F696E74202D208376838C835B83938365815B835683878393312E707074205B8CDD8AB78382815B83685D> i i vi ii iii iv v vi vii viii ix 2 3 4 5 6 7 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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60

More information

SC-85X2取説

SC-85X2取説 I II III IV V VI .................. VII VIII IX X 1-1 1-2 1-3 1-4 ( ) 1-5 1-6 2-1 2-2 3-1 3-2 3-3 8 3-4 3-5 3-6 3-7 ) ) - - 3-8 3-9 4-1 4-2 4-3 4-4 4-5 4-6 5-1 5-2 5-3 5-4 5-5 5-6 5-7 5-8 5-9 5-10 5-11

More information

Microsoft PowerPoint - lecture0610v05.pptx

Microsoft PowerPoint - lecture0610v05.pptx Excel によるグラフ作成 (Excel によるグラフ化と gnuplot) 名古屋大学情報基盤センター情報基盤ネットワーク研究部門嶋田創 1 表からグラフを作成 1. 表からグラフにしたい範囲を選択 グラフ上のx 軸系列 (A2-A11) や系列のタイトル (B1) も選択 表のx 軸方向の選択数を増やすことも可能 2. リボン UI 挿入 グラフ 作りたいグラフ グラフによっては 選択範囲が足りない

More information

1.3 2 gnuplot> set samples gnuplot> plot sin(x) sin gnuplot> plot [0:6.28] [-1.5:1.5] sin(x) gnuplot> plot [-6.28:6.28] [-1.5:1.5] sin(x),co

1.3 2 gnuplot> set samples gnuplot> plot sin(x) sin gnuplot> plot [0:6.28] [-1.5:1.5] sin(x) gnuplot> plot [-6.28:6.28] [-1.5:1.5] sin(x),co gnuplot 8 gnuplot 1 1.1 gnuplot gnuplot 2D 3D gnuplot ( ) gnuplot UNIX Windows Machintosh Excel gnuplot C 1.2 web gnuplot $ gnuplot gnuplot gnuplot> exit 1 1.3 2 gnuplot> set samples 1024 1024 gnuplot>

More information

問 1 図 1 の図形を作るプログラムを作成せよ 但し ウィンドウの大きさは と し 座標の関係は図 2 に示すものとする 図 1 作成する図形 原点 (0,0) (280,0) (80,0) (180,0) (260,0) (380,0) (0,160) 図 2 座標関係 問 2

問 1 図 1 の図形を作るプログラムを作成せよ 但し ウィンドウの大きさは と し 座標の関係は図 2 に示すものとする 図 1 作成する図形 原点 (0,0) (280,0) (80,0) (180,0) (260,0) (380,0) (0,160) 図 2 座標関係 問 2 問 1 図 1 の図形を作るプログラムを作成せよ 但し ウィンドウの大きさは 400 200 と し 座標の関係は図 2 に示すものとする 図 1 作成する図形 原点 (0,0) (280,0) (80,0) (180,0) (260,0) (380,0) (0,160) 図 2 座標関係 問 2 for 文を用いて図 3 の様な図形を描くプログラムを作成せよ 但し ウィンドウのサイズは 300 300

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

262014 3 1 1 6 3 2 198810 2/ 198810 2 1 3 4 http://www.pref.hiroshima.lg.jp/site/monjokan/ 1... 1... 1... 2... 2... 4... 5... 9... 9... 10... 10... 10... 10... 13 2... 13 3... 15... 15... 15... 16 4...

More information

これわかWord2010_第1部_100710.indd

これわかWord2010_第1部_100710.indd i 1 1 2 3 6 6 7 8 10 10 11 12 12 12 13 2 15 15 16 17 17 18 19 20 20 21 ii CONTENTS 25 26 26 28 28 29 30 30 31 32 35 35 35 36 37 40 42 44 44 45 46 49 50 50 51 iii 52 52 52 53 55 56 56 57 58 58 60 60 iv

More information

パワポカバー入稿用.indd

パワポカバー入稿用.indd i 1 1 2 2 3 3 4 4 4 5 7 8 8 9 9 10 11 13 14 15 16 17 19 ii CONTENTS 2 21 21 22 25 26 32 37 38 39 39 41 41 43 43 43 44 45 46 47 47 49 52 54 56 56 iii 57 59 62 64 64 66 67 68 71 72 72 73 74 74 77 79 81 84

More information

これでわかるAccess2010

これでわかるAccess2010 i 1 1 1 2 2 2 3 4 4 5 6 7 7 9 10 11 12 13 14 15 17 ii CONTENTS 2 19 19 20 23 24 25 25 26 29 29 31 31 33 35 36 36 39 39 41 44 45 46 48 iii 50 50 52 54 55 57 57 59 61 63 64 66 66 67 70 70 73 74 74 77 77

More information

Microsoft PowerPoint - 講義資料-mlib

Microsoft PowerPoint - 講義資料-mlib 5 回目グラフ作成ライブラリ mlib の使い方 グラフ関数 clf, Set_figure, Aspect_ratio Plot1d, Plot1d_int, Plotxy Axis_xcap, Axis_ycap, Grid_on, Legend Text_draw フィギュアウインドウの生成 フィギュアウインドウ グラフィックウインドウ内にあるグラフ作成用の仮想ウインドウで一つのフィギュアウインドウには一つのグラフを描くことができる

More information

1... 1... 1... 3 2... 4... 4... 4... 4... 4... 6... 10... 11... 15... 30

1... 1... 1... 3 2... 4... 4... 4... 4... 4... 6... 10... 11... 15... 30 1 2420128 1 6 3 2 199103 189/1 1991031891 3 4 5 JISJIS X 0208, 1997 1 http://www.pref.hiroshima.lg.jp/site/monjokan/ 1... 1... 1... 3 2... 4... 4... 4... 4... 4... 6... 10... 11... 15... 30 1 3 5 7 6 7

More information

平成18年版 男女共同参画白書

平成18年版 男女共同参画白書 i ii iii iv v vi vii viii ix 3 4 5 6 7 8 9 Column 10 11 12 13 14 15 Column 16 17 18 19 20 21 22 23 24 25 26 Column 27 28 29 30 Column 31 32 33 34 35 36 Column 37 Column 38 39 40 Column 41 42 43 44 45

More information

44 4 I (1) ( ) (10 15 ) ( 17 ) ( 3 1 ) (2)

44 4 I (1) ( ) (10 15 ) ( 17 ) ( 3 1 ) (2) (1) I 44 II 45 III 47 IV 52 44 4 I (1) ( ) 1945 8 9 (10 15 ) ( 17 ) ( 3 1 ) (2) 45 II 1 (3) 511 ( 451 1 ) ( ) 365 1 2 512 1 2 365 1 2 363 2 ( ) 3 ( ) ( 451 2 ( 314 1 ) ( 339 1 4 ) 337 2 3 ) 363 (4) 46

More information

i ii i iii iv 1 3 3 10 14 17 17 18 22 23 28 29 31 36 37 39 40 43 48 59 70 75 75 77 90 95 102 107 109 110 118 125 128 130 132 134 48 43 43 51 52 61 61 64 62 124 70 58 3 10 17 29 78 82 85 102 95 109 iii

More information

178 5 I 1 ( ) ( ) 10 3 13 3 1 8891 8 3023 6317 ( 10 1914 7152 ) 16 5 1 ( ) 6 13 3 13 3 8575 3896 8 1715 779 6 (1) 2 7 4 ( 2 ) 13 11 26 12 21 14 11 21

178 5 I 1 ( ) ( ) 10 3 13 3 1 8891 8 3023 6317 ( 10 1914 7152 ) 16 5 1 ( ) 6 13 3 13 3 8575 3896 8 1715 779 6 (1) 2 7 4 ( 2 ) 13 11 26 12 21 14 11 21 I 178 II 180 III ( ) 181 IV 183 V 185 VI 186 178 5 I 1 ( ) ( ) 10 3 13 3 1 8891 8 3023 6317 ( 10 1914 7152 ) 16 5 1 ( ) 6 13 3 13 3 8575 3896 8 1715 779 6 (1) 2 7 4 ( 2 ) 13 11 26 12 21 14 11 21 4 10 (

More information

スライド 0

スライド 0 第 2 章情報記入とプラン地図上に情報記入や 行動計画をシミュレーションするプランの説明をします 2-1 カスタム情報の記入カスタム情報とは 地図上に名称 ( タイトル ) としてアイコンと文字 ( または画像 ) を表示し 内部に住所などのコメントや写真 動画 EXCEL ファイル PDF Web リンクを持つことができるものです 初期状態 ( デフォルト ) では テキスト作成時の動作は カスタム情報記入ウィザードを開くように設定されています

More information

グラフ描画ソフトGnuplotを使う

グラフ描画ソフトGnuplotを使う グラフ描画ソフト gnuplot を使う 目次 1.What is gnuplot?... 1 2.Download and Install gnuplot... 1 3.How to use gnuplot... 4 plot コマンドで 2 次元グラフが簡単に描けます... 4 データファイル text.txt を使って折れ線グラフを描くこともできます.... 4 splot コマンドで 3 次元のグラフも簡単に描くことができます....

More information

2004年度情報リテラシーⅢ

2004年度情報リテラシーⅢ プレゼンテーションソフトウェア Microsoft PowerPoint2002 2004 年度情報リテラシー Ⅲ 学籍番号氏名あ Microsoft PowerPoint2002 1. 起動と終了起動 デスクトップのアイコンをダブルクリックするか [ スタート ]-[ プログラム ]-[Microsoft PowerPoint] の順にクリック 終了 タイトルバーの をクリックするか [ ファイル

More information

基本作図・編集

基本作図・編集 基本作図パターン 基本作図 編集 ) 線の作図 ) 補助線の作図 ) 連続線の作図 ) 平行線の作図 ) 拡大表示 縮小表示 6) 座標の入力 7) 矩形の作図 8) 円の作図 9) 距離の計測 0) 寸法線の作図 ) 連続寸法線の作図 ) 文字の作図 6 ) ラベルの作図 6 ) バルーンの作図 6 ) 回路番号の作図 7 基本編集パターン ) コマンドキャンセル ピックキャンセル 8 ) 領域選択

More information

基本作図・編集

基本作図・編集 基本作図パターン 基本作図 編集 ) 線の作図 ) 補助線の作図 ) 連続線の作図 ) 平行線の作図 ) 拡大表示 縮小表示 6) 座標の入力 7) 矩形の作図 8) 円の作図 9) 距離の計測 0) 寸法線の作図 ) 連続寸法線の作図 ) 文字の作図 ) ラベルの作図 ) バルーンの作図 ) 回路番号の作図 基本編集パターン ) コマンドキャンセル ピックキャンセル ) 領域選択 ) コントロールポイント

More information

III

III III 1 1 2 1 2 3 1 3 4 1 3 1 4 1 3 2 4 1 3 3 6 1 4 6 1 4 1 6 1 4 2 8 1 4 3 9 1 5 10 1 5 1 10 1 5 2 12 1 5 3 12 1 5 4 13 1 6 15 2 1 18 2 1 1 18 2 1 2 19 2 2 20 2 3 22 2 3 1 22 2 3 2 24 2 4 25 2 4 1 25 2

More information

iii iv v vi vii viii ix 1 1-1 1-2 1-3 2 2-1 3 3-1 3-2 3-3 3-4 4 4-1 4-2 5 5-1 5-2 5-3 5-4 5-5 5-6 5-7 6 6-1 6-2 6-3 6-4 6-5 6 6-1 6-2 6-3 6-4 6-5 7 7-1 7-2 7-3 7-4 7-5 7-6 7-7 7-8 7-9 7-10 7-11 8 8-1

More information

基本作図・編集

基本作図・編集 基本作図 編集 HAS-C-school-008-6 Copyrightc 0-08 DAIKIN INDUSTRIES, LTD. All Rights Reserved. 基本操作 ) 新規ファイルを開く ) 既存ファイルを開く ) スケール合わせ ) ファイルの保存 ) ファイルの印刷 基本作図パターン ) 線の作図 ) 補助線の作図 ) 連続線の作図 ) 平行線の作図 ) 拡大表示 縮小表示

More information

エクセルカバー入稿用.indd

エクセルカバー入稿用.indd i 1 1 2 3 5 5 6 7 7 8 9 9 10 11 11 11 12 2 13 13 14 15 15 16 17 17 ii CONTENTS 18 18 21 22 22 24 25 26 27 27 28 29 30 31 32 36 37 40 40 42 43 44 44 46 47 48 iii 48 50 51 52 54 55 59 61 62 64 65 66 67 68

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 準備編 CUI とはコマンドの基本知識 * Graphical User Interface マウスで操作 * Command User Interface キーボードによるコマンド入力 CUI の特長 コンピュータはもともとキーボードだけで使える 今でも GUI でなく CUI で使う ( しか使えない ) アプリがある コマンド ( 命令 ) を打ちさえすればやってくれる 明快 コマンドを勉強すればするほど熟練者になれる

More information

01_.g.r..

01_.g.r.. I II III IV V VI VII VIII IX X XI I II III IV V I I I II II II I I YS-1 I YS-2 I YS-3 I YS-4 I YS-5 I YS-6 I YS-7 II II YS-1 II YS-2 II YS-3 II YS-4 II YS-5 II YS-6 II YS-7 III III YS-1 III YS-2

More information

ii iii iv CON T E N T S iii iv v Chapter1 Chapter2 Chapter 1 002 1.1 004 1.2 004 1.2.1 007 1.2.2 009 1.3 009 1.3.1 010 1.3.2 012 1.4 012 1.4.1 014 1.4.2 015 1.5 Chapter3 Chapter4 Chapter5 Chapter6 Chapter7

More information

Microsoft Word IL3_1.doc

Microsoft Word IL3_1.doc プレゼンテーションソフトウェア Microsoft PowerPoint 2003 2005 年度情報リテラシー Ⅲ 学籍番号氏名あ Microsoft PowerPoint 2003 1. 起動と終了起動 デスクトップのアイコンをダブルクリックするか スタート すべてのプログラム Microsoft Office Microsoft Office PowerPoint 2003 の順にクリック 終了

More information

untitled

untitled I...1 II...2...2 III...3...3...7 IV...15...15...20 V...23...23...24...25 VI...31...31...32...33...40...47 VII...62...62...67 VIII...70 1 2 3 4 m 3 m 3 m 3 m 3 m 3 m 3 5 6 () 17 18 7 () 17 () 17 8 9 ()

More information

3D の作図ツールについて 3D 画面を表示すると 以下の新しい作図ツールが表示されます より多くのオプションを見るためには ボタンの右下の小さな矢印 をクリックして下さい 28

3D の作図ツールについて 3D 画面を表示すると 以下の新しい作図ツールが表示されます より多くのオプションを見るためには ボタンの右下の小さな矢印 をクリックして下さい 28 GeoGebra5.0Beta には 3D のグラフィックスビューの機能が備わっています これにより 立体図形についても扱うことが出来ます 3.1 3D 画面まず 通常と同じように GeoGebra を起動させましょう そして メニューバーの表示から グラフィックスビュ-3D を選択します ( または Ctrl+Shift+3 でも同様 ) すると グラフィックスビューの隣にグラフィックスビュー 3D

More information

Script started on Sun May 26 2::26 22 oyabun% gnuplot G N U P L O T Unix version 3.7 patchlevel ( //8) last modified Fri Oct 22 8:: BST 999 Cop

Script started on Sun May 26 2::26 22 oyabun% gnuplot G N U P L O T Unix version 3.7 patchlevel ( //8) last modified Fri Oct 22 8:: BST 999 Cop gnuplot 22 5 9,28 7 23,2 9, 6 8, 28 9 http://nalab.mind.meiji.ac.jp/~mk/labo/howto/intro-gnuplot/ PDF http://nalab.mind.meiji.ac.jp/~mk/labo/howto/intro-gnuplot.pdf gnuplot gnuplot gnuplot ( UNIX Win32,

More information

(Microsoft Word - Excel\211\236\227p6\217\315.docx)

(Microsoft Word - Excel\211\236\227p6\217\315.docx) この章では 既存のグラフにデータを追加する方法や異なる種類のグラフを組み合わせて作成す る方法 グラフに図を追加する方法などを学習します また よく利用するグラフの書式をテン プレートとして登録し 利用する方法についても学習します 1 データ系列系列の追加追加と削除 既存のグラフに対して 後からデータ系列を追加したり 削除することができます データ系列 とは グラフ上の関連す るデータ要素の集まりのことで

More information

. フォントを OS にインストールする インターネット等で入手したフリーのフォントをインストールすることにより Windows に標準でインストールされているフォント以外のものを利用することができます 多数のフォントをインストールするとパソコンの動作が遅くなります 必要なフォント以外はインストール

. フォントを OS にインストールする インターネット等で入手したフリーのフォントをインストールすることにより Windows に標準でインストールされているフォント以外のものを利用することができます 多数のフォントをインストールするとパソコンの動作が遅くなります 必要なフォント以外はインストール 事務系職員情報教育研修アプリケーションソフトコース PowerPoint 補足テキスト [ 目次 ]. フォントを OS にインストールする. ページ設定. クリップアートの加工 4 4. 写真のトリミング 6 5. 写真にフレームを設定する 7 6. 図形に透過性を設定する 8 7. 行間を調整する 0 8. 文字に輪郭を設定する 9. 文字の効果を設定する 0. 文字を伸縮させる 4. フォントをファイルに埋め込む

More information

Mapmakerfor の手順下絵を準備 作者の設定した大きさで作成する場合 下絵にする地図を挿入 トリミングと大きさの調整 大きさを調整した画像を保存 下絵を背景に設定 作成画面の大きさを調整 1 自分で用意した下絵を背景にする場合 下絵を背景に設定 作成画面の大きさを調整 画像が大きい場合シート

Mapmakerfor の手順下絵を準備 作者の設定した大きさで作成する場合 下絵にする地図を挿入 トリミングと大きさの調整 大きさを調整した画像を保存 下絵を背景に設定 作成画面の大きさを調整 1 自分で用意した下絵を背景にする場合 下絵を背景に設定 作成画面の大きさを調整 画像が大きい場合シート Mapmakerfor の手順下絵を準備 作者の設定した大きさで作成する場合 下絵にする地図を挿入 トリミングと大きさの調整 大きさを調整した画像を保存 下絵を背景に設定 作成画面の大きさを調整 1 自分で用意した下絵を背景にする場合 下絵を背景に設定 作成画面の大きさを調整 画像が大きい場合シートのズームを 100% に設定するとよいです 2 道路を描く 次ページから説明書きがありますのでよく読んで操作してください

More information

Debian での数学ことはじめ。 - gnuplot, Octave, R 入門

Debian での数学ことはじめ。 - gnuplot, Octave, R 入門 .... Debian gnuplot, Octave, R mkouhei@debian.or.jp IRC nick: mkouhei 2009 11 14 OOo OS diff git diff --binary gnuplot GNU Octave GNU R gnuplot LaTeX GNU Octave gnuplot MATLAB 1 GNU R 1 MATLAB (clone)

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

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 先週欠席の人へ テーマ 1 の実習 A がはじまっています TA の方に助けてもらい追いつきましょう テーマ 1 データの処理と加工 実習 A 図 5 https://titechcomp.github.io/y18-il2j/1a-exercise.html 自習教材のダウンロード ブラウザ Safari を起動 ( 圧縮ファイルの扱いが簡単 ) https://titechcomp.github.io/y18-il2j/14-dataset.html

More information

< F2D D E6A7464>

< F2D D E6A7464> PowerPoint でランチョンマット ( 型紙 ) を作成しよう PowerPoint2003 の描画機能 オートシェイプ と塗りつぶし機能を活用して, ランチョンマット の型紙作成と配色実習を行います 1 型紙の作成 A3 サイズのランチョンマットの型紙を作成します ラフスケッチを事前に描いておくと, よりイメージを捉えやすいでしょう (1) PowerPoint の起動と用紙設定 Microsoft

More information

AccessflÌfl—−ÇŠš1

AccessflÌfl—−ÇŠš1 ACCESS ACCESS i ii ACCESS iii iv ACCESS v vi ACCESS CONTENTS ACCESS CONTENTS ACCESS 1 ACCESS 1 2 ACCESS 3 1 4 ACCESS 5 1 6 ACCESS 7 1 8 9 ACCESS 10 1 ACCESS 11 1 12 ACCESS 13 1 14 ACCESS 15 1 v 16 ACCESS

More information

Microsoft Word - 415Illustrator

Microsoft Word - 415Illustrator 15.1 ベクトル画像とビットマップ画像 ベクトル画像とビットマップ画像の違い 第 15 章描画の取り扱い コンピュータグラフィックスで扱う画像は大きく分けて ベクトル画像とビットマップ画像に分ける事ができます ベクトル画像はドロー系画像あるいは描画とも呼ばれています この二種類の画像は共に画像データの表現方法を表していますが根本的に異なるものです そのため 双方の特徴を踏まえた上で利用する必要があります

More information

活用ガイド (ソフトウェア編)

活用ガイド (ソフトウェア編) (Windows 95 ) ii iii iv NEC Corporation 1999 v P A R T 1 vi P A R T 2 vii P A R T 3 P A R T 4 viii P A R T 5 ix x P A R T 1 2 3 1 1 2 4 1 2 3 4 5 1 1 2 3 4 6 5 6 7 7 1 1 2 8 1 9 1 1 2 3 4 5 6 1 2 3 4

More information

3 5 18 3 5000 1 2 7 8 120 1 9 1954 29 18 12 30 700 4km 1.5 100 50 6 13 5 99 93 34 17 2 2002 04 14 16 6000 12 57 60 1986 55 3 3 3 500 350 4 5 250 18 19 1590 1591 250 100 500 20 800 20 55 3 3 3 18 19 1590

More information

Microsoft Word - AutocadCivil3D.doc

Microsoft Word - AutocadCivil3D.doc AutocadCivil3D 簡易ガイド 新規図面作成から縦断抽出までの流れ編 -1- 1 新規図面を用意する (1) ホームボタンから 新規 - 図面 をクリックします (2) ファイルの種類から 図面テンプレート (.dwt) を選択し テンプレートファイル 国土交通省 仕様 20m 測点.dwt を選択します Note. このテンプレートを使用しないと 線形抽出時の測点条件など標準としたい条件にセットされま

More information

3. :, c, ν. 4. Burgers : t + c x = ν 2 u x 2, (3), ν. 5. : t + u x = ν 2 u x 2, (4), c. 2 u t 2 = c2 2 u x 2, (5) (1) (4), (1 Navier Stokes,., ν. t +

3. :, c, ν. 4. Burgers : t + c x = ν 2 u x 2, (3), ν. 5. : t + u x = ν 2 u x 2, (4), c. 2 u t 2 = c2 2 u x 2, (5) (1) (4), (1 Navier Stokes,., ν. t + B: 2016 12 2, 9, 16, 2017 1 6 1,.,,,,.,.,,,., 1,. 1. :, ν. 2. : t = ν 2 u x 2, (1), c. t + c x = 0, (2). e-mail: iwayama@kobe-u.ac.jp,. 1 3. :, c, ν. 4. Burgers : t + c x = ν 2 u x 2, (3), ν. 5. : t +

More information

困ったときのQ&A

困ったときのQ&A ii iii iv NEC Corporation 1997 v P A R T 1 vi vii P A R T 2 viii P A R T 3 ix x xi 1P A R T 2 1 3 4 1 5 6 1 7 8 1 9 1 2 3 4 10 1 11 12 1 13 14 1 1 2 15 16 1 2 1 1 2 3 4 5 17 18 1 2 3 1 19 20 1 21 22 1

More information

Microsoft Word - 簡単な計算と作図.doc

Microsoft Word - 簡単な計算と作図.doc エクセルを用いた簡単な技術計算と作図について 画像処理 Ⅰ 配付資料 ( 岡山理科大学澤見英男 2006 年作成 ) 表計算ソフト エクセル を用いた簡単な技術計算と作図について紹介します 例として正弦波の標本化と周波数特性の計算を取り上げることにします (1) 正弦波の描画先ず表計算ソフト エクセル を立ち上げます 以下の様な表示が現れます この中のA 列を横座標軸 ( 工学単位 ; 度 ) に割り当てます

More information

PowerPoint2003基礎編

PowerPoint2003基礎編 はじめに 1 PowerPoint の概要 2 1 PowerPoint とは 2 2 プレゼンテーションとは 2 3 PowerPoint でできること 3 4 プレゼンテーション作成の流れ 4 5 PowerPoint の起動 5 6 PowerPoint の画面 6 7 作業ウィンドウを閉じる 8 8 ツールバーを 2 行にしたい時は 9 第 1 章新しいプレゼンテーションを作ろう 1 レッスン

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

資料

資料 PC PC C VMwareをインストールする Tips: VmwareFusion *.vmx vhv.enable = TRUE Tips: Windows Hyper-V -rwxr-xr-x 1 masakazu staff 8552 7 29 13:18 a.out* -rw------- 1 masakazu staff 8552 7 29

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション ファイルシステム 各自自分のファイルシステムは 各自しっかり把握し 整備は自分で行う * 自分のファイルシステムで迷子になる (1) どこにどのファイルがあるのか分からなくなる (2) 今自分はどこで作業しているのか ( つまりカレントディレクトリはどこか ) 分からなくなるのが 実習がうまくできない主な原因のひとつです 迷子になったら Finder で自分のファイルシステムを確認するのが良いでしょう

More information

エクセルの基礎を学びながら、金額を入力すると自動的に計算され、1年分の集計も表示される「おこづかい帳」を作りしょう

エクセルの基礎を学びながら、金額を入力すると自動的に計算され、1年分の集計も表示される「おこづかい帳」を作りしょう Excel2007 Windows7 出納簿を作って 毎日の現金の入金 出金を記入し 差引残高 を表示させましょう 1. Excel を起動しましょう... 1 2. タイトルと項目を入力しましょう... 1 3. No. を入力しましょう... 1 4. 罫線を引きましょう... 2 5. タイトルの書式設定をしましょう... 2 6. 項目の書式設定をしましょう... 3 7. 桁区切りスタイルを設定しましょう...

More information

データの作成方法のイメージ ( キーワードで結合の場合 ) 地図太郎 キーワードの値は文字列です キーワードの値は重複しないようにします 同じ値にする Excel データ (CSV) 注意キーワードの値は文字列です キーワードの値は重複しないようにします 1 ツールバーの 編集レイヤの選択 から 編

データの作成方法のイメージ ( キーワードで結合の場合 ) 地図太郎 キーワードの値は文字列です キーワードの値は重複しないようにします 同じ値にする Excel データ (CSV) 注意キーワードの値は文字列です キーワードの値は重複しないようにします 1 ツールバーの 編集レイヤの選択 から 編 手順 4 Excel データを活用する ( リスト / グラフ 色分け ) 外部の表データ (CSV 形式 ) を読み込み リスト表示やカード表示 その値によって簡単なグラフ ( 円 正方形 棒の 3 種類 ) や色分け表示することができます この機能を使って地図太郎の属性情報に無い項目も Excel で作成し CSV 形式で保存することにより 自由に作成することができます (Excel でデータを保存するとき

More information

グラフ作成 暮らしのパソコンいろは 表のデータをグラフにするとデータの内容が視覚化され とてもわかりやすくなります ネット通販売上件数 を表すグラフを作成しましょう Excel2013 資料 C を開いておきましょう 1. グラフの構成要素 ネットショッピング購入状況ネット通販年代別利用

グラフ作成 暮らしのパソコンいろは 表のデータをグラフにするとデータの内容が視覚化され とてもわかりやすくなります ネット通販売上件数 を表すグラフを作成しましょう Excel2013 資料 C を開いておきましょう 1. グラフの構成要素 ネットショッピング購入状況ネット通販年代別利用 早稲田公民館 ICT サポートボランティア 2018.9 グラフ作成 暮らしのパソコンいろは 表のデータをグラフにするとデータの内容が視覚化され とてもわかりやすくなります ネット通販売上件数 を表すグラフを作成しましょう Excel2013 資料 C を開いておきましょう 1. グラフの構成要素 1 5 2 ネットショッピング購入状況ネット通販年代別利用者数 3 7 ( 人 ) 60 50 パソコン関連

More information

目次 1. 図郭のCSVから矩形シェープファイル保存... i 1.1. 変換元のCSVファイル... i 1.2. ダイアログ... i 1.3. 作成するシェープファイル... ii 2. 図郭 TIN DEM 保存 ダイアログ TINについて... 3

目次 1. 図郭のCSVから矩形シェープファイル保存... i 1.1. 変換元のCSVファイル... i 1.2. ダイアログ... i 1.3. 作成するシェープファイル... ii 2. 図郭 TIN DEM 保存 ダイアログ TINについて... 3 地物のシェープファイルから CSV 作成説明書 2012/06/07 有限会社ジオ コーチ システムズ http://www.geocoach.co.jp/ info@geocoach.co.jp 等高線や標高点のシェープファイルから TIN を発生し グリッドの XYZ の CSV ファイルを作成します 地物のシェープファイル 図郭別 CSV ファイル 等高線 標高点 範囲指定シェープファイル TIN

More information

活用ガイド (ソフトウェア編)

活用ガイド (ソフトウェア編) (Windows 98 ) ii iii iv v NEC Corporation 1999 vi P A R T 1 P A R T 2 vii P A R T 3 viii P A R T 4 ix P A R T 5 x P A R T 1 2 3 1 1 2 4 1 2 3 4 5 1 1 2 3 4 5 6 6 7 7 1 1 2 8 1 9 1 1 2 3 4 5 6 1 2 3 10

More information

ARCHITREND 見積 見積書作成編

ARCHITREND 見積 見積書作成編 AT 見積データを開く 見積書データを起動する 画面の名称と機能 : 内訳書 画面の名称と機能 : 表紙 見積書の編集 5 自社情報を入力する 5 見積情報を入力する 5 内訳書の項目名を変更する 6 数量や単価を確認する 8 属性行を入力する 9 印刷する内訳書を確認する 表紙を確認する 見積データを保存する 見積書の印刷 プリンタを設定する 余白やヘッダーを設定する 印刷イメージを確認して印刷する

More information

簡単な図面を書いてみよう 『 3D編 』

簡単な図面を書いてみよう 『 3D編 』 第 章 D 機能の基本操作 この章では TurboCAD v9 Professionalおよび TurboCAD v9 Standardに備えられている D 機能について説明します TurboSketch v9をお使いの場合は D 機能は使用することはできません - TurboCAD の D 機能の基本 Dオブジェクトを作成するツールは メニューの図形入力 Dオブジェクトもしくは [ 左面 ] ツールバーに備わっています

More information

i

i i ii iii iv v vi vii viii ix x xi ( ) 854.3 700.9 10 200 3,126.9 162.3 100.6 18.3 26.5 5.6/s ( ) ( ) 1949 8 12 () () ア イ ウ ) ) () () () () BC () () (

More information

2002年度情報リテラシーⅢ

2002年度情報リテラシーⅢ プレゼンテーションソフトウェア Microsoft PowerPoint2000 学籍番号氏名あ Microsoft PowerPoint2000 1. 起動と終了 :[ スタート ]-[ プログラム ]-[Microsoft Office2000]-[Microsoft PowerPoint] でクリック すると以下の画面が出てくるので 作成方法を選択する 終了はタイトルバーの をクリックするか

More information

スライド 1

スライド 1 6B-1. 表計算ソフトの操作 ( ) に当てはまる適切な用語とボタン ( 図 H 参照 ) を選択してください ( 選択肢の複数回の選択可能 ) (1) オートフィルオートフィルとは 連続性のあるデータを隣接 ( りんせつ ) するセルに自動的に入力してくれる機能です 1. 図 1のように連続した日付を入力します *( ア ) は 下欄 ( からん ) より用語を選択してください セル A1 クリックし

More information

Microsoft PowerPoint - 14th.ppt [互換モード]

Microsoft PowerPoint - 14th.ppt [互換モード] 工学部 6 7 8 9 10 組 ( 奇数学籍番号 ) 担当 : 長谷川英之 情報処理演習 第 14 回 2011 年 1 月 20 日 1 今日のテーマ ファイル入出力 ですが, キーボード入力などもおさらいします 2 標準入力 キーボードで入力 : 標準入力という例 )scanf( %d,&i) 前回までの講義でファイルからデータを読み込む場合に使用した関数 : fscanf 例 )fscanf(fin,

More information

Bentley Architecture Copyright(C)2005 ITAILAB All rights reserved

Bentley Architecture Copyright(C)2005 ITAILAB All rights reserved Bentley Architecture Copyright(C)2005 ITAILAB All rights reserved Bentley Architecture 概要 Bentley Architecture は 図面の作図 3 次元モデルの作成 数量情報の算出機能を持つ MicroStation TriForma V8 をベースにした 3 次元設計システムです 1 Bentley Architecture

More information