Python (Anaconda ) Anaconda 2 3 Python Python IDLE Python NumPy 6

Size: px
Start display at page:

Download "Python (Anaconda ) Anaconda 2 3 Python Python IDLE Python NumPy 6"

Transcription

1 Python (Anaconda ) Anaconda 2 3 Python Python IDLE Python NumPy 6 5 matplotlib Scipy 11 7 scikit-learn 12 8 URL 13 1 Python 1 ( ) (numpy, matplotlib, scipy, scikit-learn ) Anaconda python2.7 64bit PC 64bit 32bit 1 Python( ): 1

2 2 Anaconda Anaconda 2 1. Anadonda Windows Python bit NO THANKS 2. (400MB ) 3. ( ) Anaconda2-x.x.x-Windows_x86_64.exe ( x 4. Setup Next, I Agree( ), Next(Just Me ) 5. ( ) Destination Folder( ) C:\Anaconda2 ( or 2 ) C 6. Advanced Options 2 Install 7. Completed Next, Finish 8. Anaconda2 (64-bit) Anaconda IPython Jupyter Spyder 2 Anaconda python windows 2

3 3 Python Python OS 3.1 Python PC Windows python python Python C:\Anaconda2 python python python 1: Python Enter >>> print "Hello" Hello Python 2: Enter 3

4 >>> exit() Enter 4

5 3.2 IDLE Python IDLE PC Windows idle idle Python C:\Anaconda2\Script python idle IDLE python 3: IDLE File New File Python sample 1.py print "Hello" File Save Save as 4: Run Run Module IDLE Hello 5: 5

6 4 NumPy NumPy 3 IDLE Python (Sec. 3.2 ) π >>> import numpy >>> numpy.pi 6: 3 NumPy( ): 6

7 5 matplotlib 5.1 matplotlib 4 IDLE Python (Sec. 3.2 ) File New File Python sample test.py import numpy as np import matplotlib.pyplot as plt x=np.arange(-3,3,0.1) y= np.sin(x) plt.plot(x,y) plt.show() Run Run Module 7: ( ) 5.2 Python sample 2.py from pylab import * subplot(111, axisbg= darkslategray ) #subplot(111, axisbg #ababab ) t = arange(0.0, 2.0, 0.01) s = sin(2*pi*t) plot(t, s, y ) xlabel( time (s), color= r ) ylabel( voltage (mv), color= 0.5 ) # grayscale color title( About as silly as it gets, folks, color= #afeeee ) show() 4 matplotlib( ) 7

8 [1] sample_2.py sample 2.py Run Run Module 8:

9 5.3 ( ) x 2 y [1] plot_graph_data.txt import matplotlib.pyplot as plt x=[] y=[] fp = open( plot_graph_data.txt, r ) for i, line in enumerate(fp): data=line.split() x.append(data[0]) y.append(data[1]) plt.plot(x,y, ro ) # red circle plt.title( My graph ) plt.xlabel( time (s) ) plt.ylabel( hight (m) ) plt.text(1.2, 1.2, Hello Hello, rotation=45) plt.xlim(0.0, 4.0) plt.ylim(0.0, 2.0) plt.show() [1] plot_graph.py 9: 9

10 plt.title( My graph ) 10

11 6 Scipy Scipy 6 IDLE Python (Sec. 3.2 ) π >>> import scipy >>> scipy.pi 10: 6 Scipy.org( ): 11

12 7 scikit-learn ( ) scikit-learn 7 IDLE Python (Sec. 3.2 ) >>> import sklearn scikit-learn [1] sample 4.py ( ) import numpy as np import matplotlib.pyplot as plt from sklearn.linear_model import LinearRegression # create samples sample_size = 30 err_sigma = 0.1 x = np.random.rand(sample_size, 1) err = err_sigma * np.random.randn(sample_size, 1) y = 3 * x err # train a linear regression model regr = LinearRegression () regr.fit(x, y) # make predictions xt = np.linspace (0.0, 1.0, num = 1000).reshape((1000, 1)) yt = regr.predict (xt) # plot samples and regression result plt.plot(x, y, o ) plt.plot(xt, yt) plt.show() scikit-learn 11: 7 scikit learn( ): 12

13 8 URL python URL 1. PythonWeb IT 2. Python math 3. Python 4. Python 5. Python : 4 ( ) 6. Python Scientific Lecture Notes [1] 13

Python ( ) Anaconda 2 3 Python Python IDLE Python NumPy 6 5 matpl

Python ( ) Anaconda 2 3 Python Python IDLE Python NumPy 6 5 matpl Python ( ) 2017. 11. 21. 1 1 2 Anaconda 2 3 Python 3 3.1 Python.......................... 3 3.2 IDLE Python....................... 5 4 NumPy 6 5 matplotlib 7 5.1.................................. 7 5.2..................................

More information

1 matplotlib matplotlib Python matplotlib numpy matplotlib Installing A 2 pyplot matplotlib 1 matplotlib.pyplot matplotlib.pyplot plt import import nu

1 matplotlib matplotlib Python matplotlib numpy matplotlib Installing A 2 pyplot matplotlib 1 matplotlib.pyplot matplotlib.pyplot plt import import nu Python Matplotlib 2016 ver.0.06 matplotlib python 2 3 (ffmpeg ) Excel matplotlib matplotlib doc PDF 2,800 python matplotlib matplotlib matplotlib Gallery Matplotlib Examples 1 matplotlib 2 2 pyplot 2 2.1

More information

Visual Python, Numpy, Matplotlib

Visual Python, Numpy, Matplotlib Visual Python, Numpy, Matplotlib 1 / 38 Contents 1 2 Visual Python 3 Numpy Scipy 4 Scipy 5 Matplotlib 2 / 38 Contents 1 2 Visual Python 3 Numpy Scipy 4 Scipy 5 Matplotlib 3 / 38 3 Visual Python: 3D Numpy,

More information

1 6/13 2 6/20 3 6/27 4 7/4 5 7/11 6 7/18 N 7 7/25 Warshall-Floyd, Bellman-Ford, Dijkstra TSP DP, 8/1 2 / 36

1 6/13 2 6/20 3 6/27 4 7/4 5 7/11 6 7/18 N 7 7/25 Warshall-Floyd, Bellman-Ford, Dijkstra TSP DP, 8/1 2 / 36 3 2016 6 27 1 / 36 1 6/13 2 6/20 3 6/27 4 7/4 5 7/11 6 7/18 N 7 7/25 Warshall-Floyd, Bellman-Ford, Dijkstra TSP DP, 8/1 2 / 36 1 2 3 3 / 36 4 / 36 os.urandom(n) n >>> import os >>> r = os.urandom(4) #

More information

Visual Python, Numpy, Matplotlib

Visual Python, Numpy, Matplotlib Visual Python, Numpy, Matplotlib 1 / 57 Contents 1 2 Visual Python 3 Numpy Scipy 4 Scipy 5 Matplotlib 2 / 57 Contents 1 2 Visual Python 3 Numpy Scipy 4 Scipy 5 Matplotlib 3 / 57 3 Visual Python: 3D Numpy,

More information

Anaconda x86_64 版バージョン の インストールとパッケージの追加 最終更新 : 2018 年 2 月 10 日 URL: Anaconda は,Py

Anaconda x86_64 版バージョン の インストールとパッケージの追加 最終更新 : 2018 年 2 月 10 日 URL:   Anaconda は,Py Anaconda x86_64 版バージョン 5.0.0 の インストールとパッケージの追加 最終更新 : 2018 年 2 月 10 日 URL: https://www.kunihikokaneko.com/dblab/toolchain/anaconda3.html Anaconda は,Python バージョン 3 の言語処理系と, 開発環境と, 各種ツールの詰め合わせであ る. キーワード

More information

2015 I ( TA)

2015 I ( TA) 2015 I ( TA) Schrödinger PDE Python u(t, x) x t 2 u(x, t) = k u(t, x) t x2 k k = i h 2m Schrödinger h m 1 ψ(x, t) i h ( 1 ψ(x, t) = i h ) 2 ψ(x, t) t 2m x Cauchy x : x Fourier x x Fourier 2 u(x, t) = k

More information

Python2 Python3 Python 2.7 Python 3.6 Python2 Python3 Python 2.7 Python3.6 Python Python Anaconda Python Anaconda Python

Python2 Python3 Python 2.7 Python 3.6 Python2 Python3 Python 2.7 Python3.6 Python Python Anaconda Python Anaconda Python (Python ) C++ Python Python 1 Python2 Python3 Python 2.7 Python 3.6 Python2 Python3 Python 2.7 Python3.6 Python Python Anaconda Python Anaconda Python https://www.continuum.io/downloads 2 Python 3.6 version

More information

2018 年 11 月 10 日開催 第 27 回日本コンピュータ外科学会大会 ハンズオンセミナー 2 外科領域における医用画像の深層学習 事前インストール手順 2018 年 10 月 11 日版 作成 : 名古屋大学小田昌宏 1

2018 年 11 月 10 日開催 第 27 回日本コンピュータ外科学会大会 ハンズオンセミナー 2 外科領域における医用画像の深層学習 事前インストール手順 2018 年 10 月 11 日版 作成 : 名古屋大学小田昌宏 1 2018 年 11 月 10 日開催 第 27 回日本コンピュータ外科学会大会 ハンズオンセミナー 2 外科領域における医用画像の深層学習 事前インストール手順 2018 年 10 月 11 日版 作成 : 名古屋大学小田昌宏 1 必要環境 Windows10 がインストールされた PC メモリ 8GB 以上必須,16GB 以上推奨 インターネット接続 Windows のユーザ名に日本語等の全角文字を使用していないこと.

More information

たのしいプログラミング Pythonではじめよう!

たのしいプログラミング Pythonではじめよう! Title of English-language original: Python for Kids A Playful Introduction to Programming ISBN 978-1-59327-407-8, published by No Starch Press, Inc. Copyright 2013 by Jason R. Briggs. Japanese-language

More information

GIZMO ¤ÇÍ·¤ó¤Ç¤ß¤ë

GIZMO ¤ÇÍ·¤ó¤Ç¤ß¤ë GIZMO February 21, 2019 GIZMO February 21, 2019 1 / 17 GIZMO Users Guide URL http://www.tapir.caltech.edu/ phopkins/site/gizmo_files/gizmo_documentation.html /home/hydro00/gizmo_hydro2018.tar.gz GIZMO_hydro2018/practice

More information

ユレシス社アプリケ-ション

ユレシス社アプリケ-ション 1-1. EURESYS Solutions evision Multicam Driver Euresys Solutions2004/1 CD Picolo Multicam Driver evision Studio/ evaluter Euresys Solutions2006/1 CD Multicam for Picolo Driver CD 3.8.3 Multicam for Picolo

More information

GNU Emacs GNU Emacs

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

More information

‘îŁñ›È−wfiÁŁÊ”À„±I --Tensorflow‡ð”g‡Á‡½fl»ŁÊ›ð’Í--

‘îŁñ›È−wfiÁŁÊ”À„±I  --Tensorflow‡ð”g‡Á‡½fl»ŁÊ›ð’Í-- I Tensorflow 2018 10 31 ( ) ( ) Tensorflow 2018 10 31 ( ) 1 / 39 Tensorflow I Tensorflow Python Python(+Python Anaconda) Tensorflow Tensorflow 1 Anaconda Prompt 2 Anaconda Prompt (base) C:\Users\komori>conda

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

Python Speed Learning

Python   Speed Learning Python Speed Learning 1 / 89 1 2 3 4 (import) 5 6 7 (for) (if) 8 9 10 ( ) 11 12 for 13 2 / 89 Contents 1 2 3 4 (import) 5 6 7 (for) (if) 8 9 10 ( ) 11 12 for 13 3 / 89 (def) (for) (if) etc. 1 4 / 89 Jupyter

More information

2.2 Sage I 11 factor Sage Sage exit quit 1 sage : exit 2 Exiting Sage ( CPU time 0m0.06s, Wall time 2m8.71 s). 2.2 Sage Python Sage 1. Sage.sage 2. sa

2.2 Sage I 11 factor Sage Sage exit quit 1 sage : exit 2 Exiting Sage ( CPU time 0m0.06s, Wall time 2m8.71 s). 2.2 Sage Python Sage 1. Sage.sage 2. sa I 2017 11 1 SageMath SageMath( Sage ) Sage Python Sage Python Sage Maxima Maxima Sage Sage Sage Linux, Mac, Windows *1 2 Sage Sage 4 1. ( sage CUI) 2. Sage ( sage.sage ) 3. Sage ( notebook() ) 4. Sage

More information

A Study on Practical Use of Artificial Intelligence. The purpose of this research paper is to demonstrate the ease of using artificial intelligence in

A Study on Practical Use of Artificial Intelligence. The purpose of this research paper is to demonstrate the ease of using artificial intelligence in A Study on Practical Use of Artificial Intelligence. The purpose of this research paper is to demonstrate the ease of using artificial intelligence in the light of the recent popularity of tertiary artificial

More information

スライド タイトルなし

スライド タイトルなし LightCycler Software Ver.3.5 : 200206 1/30 Windows NT Windows NT Ctrl + Alt + Delete LightCycler 3 Front Screen 2/30 LightCycler3 Front RUN Data Analysis LightCycler Data Analysis Edit Graphics Defaults

More information

nakao

nakao Fortran+Python 4 Fortran, 2018 12 12 !2 Python!3 Python 2018 IEEE spectrum https://spectrum.ieee.org/static/interactive-the-top-programming-languages-2018!4 Python print("hello World!") if x == 10: print

More information

4 (TA:, ) 2018 (Ver2.2) Python Python anaconda hello world

4 (TA:, ) 2018 (Ver2.2) Python Python anaconda hello world 4 (TA:, ) 2018 (Ver2.2) 1 2 2 3 3 Python 4 3.1 Python....................... 4 3.1.1 anaconda............................ 4 3.1.2 hello world............................... 4 3.1.3 pip.............. 4

More information

X Window System X X &

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

More information

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

untitled

untitled Track Stick...1...2...7...8...9...10...10...14...14...17...19...23 1. CD CD 2. INSTALL TRACK SITCK MANAGER 3. OK 2 4. NEXT 5. license agreement I agree 6. Next 3 7. 8. Next 9. Next 4 10. Close 9 OK PDF

More information

untitled

untitled JavaFX Mobile 1. JavaFX Mobile... 2 1.1. JavaFX... 2 1.2. JavaFX Script... 3 1.2.1.... 3 1.2.2.... 5 1.2.3.... 5 2.... 7 2.1. JDK 6 Update 13... 7 2.2. NetBeans IDE 6.5.1 for JavaFX 1.1.1... 7 3.... 10

More information

ECCS. ECCS,. ( 2. Mac Do-file Editor. Mac Do-file Editor Windows Do-file Editor Top Do-file e

ECCS. ECCS,. (  2. Mac Do-file Editor. Mac Do-file Editor Windows Do-file Editor Top Do-file e 1 1 2015 4 6 1. ECCS. ECCS,. (https://ras.ecc.u-tokyo.ac.jp/guacamole/) 2. Mac Do-file Editor. Mac Do-file Editor Windows Do-file Editor Top Do-file editor, Do View Do-file Editor Execute(do). 3. Mac System

More information

Q&A目次.PDF

Q&A目次.PDF LSM5Pascal Q A Q1 Timeseries Q2 Timeseries Q3 Q4 Q5 1 Q6 Image Browser Q7 Q8 Q9 Acquire Time Series Manual Time 1 Unit sec 1 7 Cycle Delay n n 1 Time Interval n n 1 Options Settings TimeSeries Page 40

More information

Cleaner XL 1.5 クイックインストールガイド

Cleaner XL 1.5 クイックインストールガイド Autodesk Cleaner XL 1.5 Contents Cleaner XL 1.5 2 1. Cleaner XL 3 2. Cleaner XL 9 3. Cleaner XL 12 4. Cleaner XL 16 5. 32 2 1. Cleaner XL 1. Cleaner XL Cleaner XL Administrators Cleaner XL Windows Media

More information

Ipython Notebook の紹介

Ipython Notebook の紹介 IPython Notebook の 紹 介 と cerlでの 利 用 計 画 2015/09/15 T. Obina KEKB 制 御 打 ち 合 わせ 導 入 を 検 討 した 動 機 :High Level Application リアルタイム 表 示 や 基 本 的 な 操 作 パネルは CSS でOK 高 レベルアプリケーションをどうするか??? 現 在 のcERL/PF/PF-ARでは

More information

JNOD32OPE_1.book

JNOD32OPE_1.book ESET NOD32 Antivirus Z028138-01 [2013 9 ] ii ...ii...ii 1... 1 1.1 ESET NOD32 Antivirus... 1 1.2... 1 1.3... 1 1.4... 2 2 ESET NOD32 Antivirus... 3 2.1 ESET NOD32 AntivirusEZ Controller... 3 2.1.1 Windows

More information

programmingII2019-v01

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

More information

Python による科学技術計算の概要

Python による科学技術計算の概要 1 2 https://www.kdnuggets.com/2017/05/poll-analyticsdata-science-machine-learning-software-leaders.html https://www.kdnuggets.com/2017/08/pythonovertakes-r-leader-analytics-data-science.html 3 4 5 6 7

More information

MRS-series File Manager

MRS-series File Manager 1 MRS...2...3 MRS...3...3...4 MRS...4...5...10...10...11...11...12 V...13 V...13...13...13...14 V...14...14...15 AIFF WAV...15...15 IMPORT...15 Import...15 V...16...16 EXPORT...16 Export...16 ZOOM MRS

More information

Python Speed Learning

Python   Speed Learning Python Speed Learning 1 / 76 Python 2 1 $ python 1 >>> 1 + 2 2 3 2 / 76 print : 1 print : ( ) 3 / 76 print : 1 print 1 2 print hello 3 print 1+2 4 print 7/3 5 print abs(-5*4) 4 / 76 print : 1 print 1 2

More information

quattro.PDF

quattro.PDF Quattro USB Audio Interface 2 M-AUDIO 3 Windows Windows 98 SE/ Windows ME/ Windows 2000/ Windows XP Platinum III 500MHz/ 96kHz Platinum II 400MKz/ 48kHz 128MB RAM / 96kHz 64MB RAM/ 48kHz Macintosh USB

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

Python を用いた人工衛星 (MODIS) データの解析手引書 担当 : 植山雅仁 1. 新規プロジェクトの立ち上げと準備 Jupyter Notebook を立ち上げる Hello World! という文字が表示されるプログラムを実行する >> print('hello World!') [C

Python を用いた人工衛星 (MODIS) データの解析手引書 担当 : 植山雅仁 1. 新規プロジェクトの立ち上げと準備 Jupyter Notebook を立ち上げる Hello World! という文字が表示されるプログラムを実行する >> print('hello World!') [C Python を用いた人工衛星 (MODIS) データの解析手引書 担当 : 植山雅仁 1. 新規プロジェクトの立ち上げと準備 Jupyter Notebook を立ち上げる Hello World! という文字が表示されるプログラムを実行する print('hello World!') [Cell] => [Run Cells] から セル毎にプログラムを実行することができる ([CTL]+[Tab]+[Enter]

More information

MAP2496.PDF

MAP2496.PDF Audiophile 2496 24 Bit 96 khz 4 in/ 4 out PCI Digital Recording Interface with MIDI 2 M-AUDIO 3 PCI 1. INS1&2 IN1 IN2 2. OUTS1&2 OUT1 OUT2 3. 15 D-sub S/PDIF MIDI 4. S/PDIF S/PDIF DAT MD A/D S/PDIF 5.

More information

Copyright 2008 QSR International Pty Ltd. ABN 47 006 357 213. All rights reserved. NVivo QSR ( ) QSR International Pty Ltd. Microsoft.NET SQL Server W

Copyright 2008 QSR International Pty Ltd. ABN 47 006 357 213. All rights reserved. NVivo QSR ( ) QSR International Pty Ltd. Microsoft.NET SQL Server W NVivo 8 NVivo NVivo NVivo 8 ( ) Copyright 2008 QSR International Pty Ltd. ABN 47 006 357 213. All rights reserved. NVivo QSR ( ) QSR International Pty Ltd. Microsoft.NET SQL Server Windows XP Vista Windows

More information

Rによる計量分析:データ解析と可視化 - 第2回 セットアップ

Rによる計量分析:データ解析と可視化 - 第2回 セットアップ R 2 2017 Email: gito@eco.u-toyama.ac.jp October 16, 2017 Outline 1 ( ) 2 R RStudio 3 4 R (Toyama/NIHU) R October 16, 2017 1 / 34 R RStudio, R PC ( ) ( ) (Toyama/NIHU) R October 16, 2017 2 / 34 R ( ) R

More information

Configuring_01

Configuring_01 Symantec Backup Exec Dell EqualLogic Microsoft Exchange Server SQL Server IT / / 24 365 Symantec Backup Exec Advanced Disk-based Backup Option (ADBO) Dell Equal- Logic Microsoft Exchange Server 2003 2007

More information

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

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

More information

Jupiter User Guide 1.0.2 30 3 16 Jupiter Genius[2] Genius Jupiter Jupiter Stacked Alternating Offers Protocol(SAOP)[1] Jupiter 1 Genius Jupiter 1 Jupiter 2 Jupiter 3 1 1 2 4 1 Jupiter 5 1.1..............................

More information

Microsoft Word - GPM_read_program_guide_forPython_V5.1.docx

Microsoft Word - GPM_read_program_guide_forPython_V5.1.docx 2018/03/15 第 版 本書は全球降 観測衛星 (GPM) のデータを読み込むプログラム (Python) の作成 法についてまとめたものです 本書で解説するサンプルプログラムは GPM はプロダクトバージョン 5 GSMaP はプロダクトバージョン 4 で動作を確認しています 目次 1. はじめに... 3 2.GPM データの 法... 4 3. 関連 書 サンプルプログラムの 法...

More information

TeraTerm Pro V.2.32の利用法

TeraTerm Pro V.2.32の利用法 Tera Term Pro ver.2.23 Windows Ver.2.1 2 Tterm23Zip Ttermp23 cedar ttermpro Ttermpro 3 Setup Terminal 3 Setup Window 4 Setup Font 5 Setup keyboard 6 Setup Serial port 7 Setup General 8 9 Tera Term Pro

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

Python (2) 1 (random number) MVP[1] MCNP[2] Python 1. π Python Python (random number generator) ( ) (pseudorandom number) Lehmer (l

Python (2) 1 (random number) MVP[1] MCNP[2] Python 1. π Python Python (random number generator) ( ) (pseudorandom number) Lehmer (l Python (2) 1 (random number) MVP[1] MCNP[2] Python 1. π 2. 3. 1 4. 2 Python Python 2 2.1 (random number generator) ( ) (pseudorandom number) Lehmer (linear congruential generator)[3] 0 1 S i = (as i 1

More information

Microsoft Word - PrivateAccess_UM.docx

Microsoft Word - PrivateAccess_UM.docx `````````````````SIRE Page 1 English 3 日本語 7 Page 2 Introduction Welcome to! is a fast, simple way to store and protect critical and sensitive files on any ixpand Wireless Charger. Create a private vault

More information

HP ThinUpdateを使用したWESシンクライアントイメージリストア手順書

HP ThinUpdateを使用したWESシンクライアントイメージリストア手順書 Technical white paper HP ThinUpdate を使用した Windows Embedded シンクライアント OS のイメージリカバリ手順 2015 年 11 月 目次 HP ThinUpdate とは? 2 対応する機種と OS イメージ 2 HP ThinUpdate のインストール 3 HP ThinUpdate を使用した OS リカバリ用 USB メモリの作成 9

More information

8-7th

8-7th 画像認識 人物検出を例に 特徴抽出 人らしさ を取り出す写像 特 徴 抽 出 画像認識 人物検出を例に 特徴抽出 人らしさ を取り出す写像 特 徴 抽 出 cifar10 一般物体認識のデータセット 物体カテゴリ10 各カテゴリ1000枚 画像サイズ32x32 http://www.cs.toronto.edu/ kriz/cifar.html 同ページからcifar10 python version

More information

チュートリアル XP Embedded 入門編

チュートリアル XP Embedded 入門編 TUT-0057 Ver. 1.0 www.interface.co.jp Ver 1.0 2005 6 (,), Web site () / () 2004 Interface Corporation. All rights reserved. ...1...1 1. XP Embedded...2 2....3 2.1....3 2.2....4 2.2.1. SLD...4 2.3....5

More information

version 1.0 July 2012 python Yasushi Nakajima Computer and Data Management Division Subaru Telescope NAOJ

version 1.0 July 2012 python Yasushi Nakajima Computer and Data Management Division Subaru Telescope NAOJ version 1.0 July 2012 python Yasushi Nakajima Computer and Data Management Division Subaru Telescope NAOJ Contents 1 3 1.1 python................................... 3 1.2..................... 5 1.3..........................

More information

untitled

untitled ALTIRIS RECOVERY SOLUTION 6.2(Server-based Mode) Quick Startup Guide Rev. 1.1 2007 10 18 1.... 2 1.1 RECOVERY SOLUTION SERVER... 2 1.2 RECOVERY AGENT... 3 2.... 4 2.1... 4 2.2 RECOVERY SOLUTION... 5 2.3

More information

Rの基本操作

Rの基本操作 Microsoft Azure 高校生のための Azure Machine Learning By M. Takezawa 機械学習 (Machine Learning) とは 機械学習とは 機械にデータを学習させ データに潜むパターンや特性を発見し予測させることです Microsoft Azure Machine Learning とは Microsoft 社が提供する Azure の機能の一つであり

More information

5.2 White

5.2 White 1 EViews 1 : 2007/5/15 2007/5/25 1 EViews 4 2 ( 6 2.1............................................ 6 2.2 Workfile............................................ 7 2.3 Workfile............................................

More information

2 3

2 3 Sample 2 3 4 5 6 7 8 9 3 18 24 32 34 40 45 55 63 70 77 82 96 118 121 123 131 143 149 158 167 173 187 192 204 217 224 231 17 285 290 292 1 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

More information

untitled

untitled DSpace 1 1 DSpace HOME...4 1.1 DSpace is Live...4 1.2 Search...4 1.3 Communities in DSpace...6 1.4...6 1.4.1 Browse...7 1.4.2 Sign on to...14 1.4.3 Help...16 1.4.4 About DSpace...16 2 My DSpace...17 2.1

More information

LSM5Pascal Ver 3.2 GFP 4D Image VisArt Carl Zeiss Co.,Ltd.

LSM5Pascal Ver 3.2 GFP 4D Image VisArt Carl Zeiss Co.,Ltd. LSM5Pascal Ver 3.2 GFP 4D Image VisArt 2004.03 LSM5PASCAL V3.2 LSM5PASCAL SW3.2Axiovert200M 1 1 2 3 3 4 4 5 SingleTrack 9 Multi Track 10,18 5 / 21 6 3 27 7 35 8 ( OFF) 40 LSM5PASCAL V3.2 LSM5PASCAL 65

More information

Python入門:アプリケーションを作る

Python入門:アプリケーションを作る Python 入門 1 アプリケーションを作る 2 アプリケーションを作る前に 何をしたいのか 前提 手順 得られる結果 どういう手順なのか 手順を細かい手順に分解 ライブラリでは何ができるか どういうエラーがあり得るか 3 ファイル中の各単語の出現回数 を数える ファイルを開く :open() アルファベット以外の文字で分割 正規表現を利用 辞書構造を使って 単語と出現回数を登録 import re

More information

Android Studioセットアップガイド

Android Studioセットアップガイド Android Studio 2016/4/9 Android Studio Android *1 Android Studio Android Studio Android Studio Android Studio Android PDF : Android Studio Android Android Studio Android *2 c R TM *1 Android Studio Android

More information

02 01 02

02 01 02 02 01 02 Introduction 03 04 03 Usability 04 Usability & Technology Usability & Technology Technology 05 Color Scan 06 Paperless Paperless Fax Paperless 07 bizhub Document Output Copy & Print 08 Document

More information

フリーセルプロの使い方

フリーセルプロの使い方 FreeCell Pro 011 2 FreeCell Pro 2002 FCPRO.HLP FreeCell Pro6.4 6.5 FreeCell Pro 1000 http://solitairelaboratory.com/fcpro.html FreeCell Pro 2009 2 3 FreeCell Pro Microsoft FC 0 Windows 3.1 FreeCell Pr

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

M_SL-1370

M_SL-1370 Front K date: 2009/03/31 Back K file name: M_SLー1370.ai size: W320H260 TEST LINK SE-322 騒音計ソフトウェア 項目 目次 ページ 1. ソフトウェア (TestLink SE322) について 1 取扱説明書 (1) パーソナルコンピューター (PC) 接続条件 1 (2) ソフトウェアのセットアップ方法 1 (3)

More information

In [168]: soup.find_all("label")

In [168]: soup.find_all(label) step 1 kakaku.com/bicycle/bicycle-battery/ web web Chrome cntl + Source Code and Copy cd 'kakaku_com_bicycle_bicycle-battery.html' In [166]: from bs4 import BeautifulSoup In [167]: html = open('kakaku_com_bicycle_bicycle-battery_2017.html')

More information

retool_001-013_intro.indd

retool_001-013_intro.indd Part 1 CHAPTER 1 Part 1 Section 1 1.1. Excel Excel New Application Employee Module Template Responsive CREATE Data Entities Import Entities form Excel... Excel 6 7 Section 1 1-Click Publish Interface Screen

More information

Nios II 簡易チュートリアル

Nios II 簡易チュートリアル Nios II Ver. 7.1 2007 10 1. Nios II Nios II JTAG UART LED 8 PIO LED < > Quartus II SOPC Builder Nios II Quartus II.sof Nios II IDE Stratix II 2S60 RoHS Nios II Quartus II http://www.altera.com/literature/lit-nio2.jsp

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

ドライバインストールガイド

ドライバインストールガイド PRIMERGY Single Port ファイバーチャネルカード (8Gbps) Dual Port ファイバーチャネルカード (8Gbps) (PG-FC205/PG-FC205L) (PG-FC206/PG-FC206L) CA092276-8938-01 ドライバインストールガイド i 目次 1. ドライバのインストール / アンインストール方法... 3 1.1. ドライバのダウンロード

More information

1 I EViews View Proc Freeze

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

More information

<4D F736F F D B B83578B6594BB2D834A836F815B82D082C88C60202E646F63>

<4D F736F F D B B83578B6594BB2D834A836F815B82D082C88C60202E646F63> デザイン言語 Processing 入門 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/084931 このサンプルページの内容は, 初版 1 刷発行当時のものです. Processing Ben Fry Casey Reas Windows Mac Linux Lesson 1 Processing

More information

GENESYS2005_Instal_Guide.PDF

GENESYS2005_Instal_Guide.PDF : CET-223 Agilent EEsof EDA GENESYS 2005.11 & SystemVue 2005.02 / 2005 4 SystemView by Elanix SystemVue TM 2006 3 3 EDA 1.... 4 2.... 5 2-1.... 6 2-2. GENESYS... 6 Step1:... 6 Step2:... 7 Step3:... 8 Step4:...

More information

HD でブロードキャストするための Adobe Media Live Encoder のインストールおよび設定方法 Adobe Media Live Encoder のダウンロード : 手順 1 へ行く 画面下にある Downlo

HD でブロードキャストするための Adobe Media Live Encoder のインストールおよび設定方法 Adobe Media Live Encoder のダウンロード : 手順 1   へ行く 画面下にある Downlo HD でブロードキャストするための Adobe Media Live Encoder のインストールおよび設定方法 Adobe Media Live Encoder のダウンロード : 手順 1 https://get.adobe.com/flashplayer/ へ行く 画面下にある Download ボタンをクリックする 手順 2 ダウンロードボタンをクリックすると FMLE をダウンロードするために

More information

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that use microcontrollers (MCUs)

More information

TDR測定ガイド Ver1.PDF

TDR測定ガイド Ver1.PDF TDR/TDT Agilent Infiniium DCA 86100B Agilent 54754A TDR/TDT 1 1 2 2 3 3 4 TDR 6 8 TDR 11 5 23 お願い下記の PDF の URL のみ 2014 年 8 月以降無効となります http://cp.literature.agilent.com/litweb/pdf/xxxxxx.pdf 新しい URL に読み替えて

More information

大学等における社会人の受け入れ状況調査

大学等における社会人の受け入れ状況調査 1 1 2 3 4 - - - - - - 6 8 6 2001 30 7 6 3 30 8 6 1 4 3,6,9,12 4 1 1 E 1 3 13 15 4 3 1 ( ) 8. 6 14 8 6 2002 8 8 3 7 60 1 4 4 32 100 12

More information

5 1 2 3 4 5 6 7 8 9 10 1 Quick Boot 1st Boot Device 2nd Boot Device 3rd Boot Device Network Boot Initial Display Mode S.M.A.R.T. for Hard Disks BootUp Num-Lock Password Check CPU Serial Number System BIOS

More information

untitled

untitled FutureNet Microsoft Corporation Microsoft Windows Windows 95 Windows 98 Windows NT4.0 Windows 2000, Windows XP, Microsoft Internet Exproler (1) (2) (3) COM. (4) (5) ii ... 1 1.1... 1 1.2... 3 1.3... 6...

More information

untitled

untitled Ver. 1.0 1...1 1.1...1 1.2...1 1.3 Inventory Tool For Dell Update...1 2 HotFix...2 3 Inventory Tool For Dell Update...4 4 SMS...8 5 Inventory Tool for Dell Update...10 Inventory Tool for Dell Update 1

More information

1 VisBAR edu H 2 O.....

1 VisBAR edu H 2 O..... VisBAR edu v1.03 ( ) 25 4 22 1 VisBAR edu 1 1.1....................................................... 1 1.2.................................................. 2 2 3 2.1 H 2 O.........................................

More information

OK (S) vncviewer UNIX EDS vncviewer : VNC server: eds.efc.sec.eng.shizuoka.ac.jp:51 OK 2

OK (S) vncviewer UNIX EDS vncviewer : VNC server: eds.efc.sec.eng.shizuoka.ac.jp:51 OK 2 Mathematica I (2001 5 31, 6 7 ) UNIX EDS vncviewer Internet Exploler http://www.efc.sec.eng.shizuoka.ac.jp/admin/pubsoft/ vncviewer.exe : 1 OK (S) vncviewer UNIX EDS vncviewer : VNC server: eds.efc.sec.eng.shizuoka.ac.jp:51

More information

RT-PCR プロトコール.PDF

RT-PCR プロトコール.PDF Real -Time RT-PCR icycler iq Bio Rad RT-PCR RT-PCR 1 icycler iq Bio Rad icycler iq 30 2 Ready-To-Go T-Primed First-Strand Kit (amersham pharmacia biotech) Ready-To-Go T-Primed First-Strand Kit QuantiTect

More information

XMP structure: 1

XMP structure: 1 WPS Python プロシジャユーザーガイドとリファレンス バージョン : 4.1.2 Copyright 2002-2019 World Programming Limited www.worldprogramming.com 目次 はじめに... 3 セットアップと設定...4 WPS で Python を使用する...5 PROC PYTHON...6 EXPORT... 6 IMPORT...7

More information

C-720 Ultra Zoom 取扱説明書

C-720 Ultra Zoom 取扱説明書 C-720 Ultra Zoom 2 3 4 1 2 3 4 5 5 6 7 6 8 9 7 10 8 ~ ~ 9 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 10 ~ ~ ~ 11 12 13 14 ÑñÉí 15 16 ~ 8 1 2 3 4 5 6 7 $ % ^ & 9 ISO 100 0! @ # 1 2 3 4 5 6 7 8 17 $ % ^ & 9 ISO 100 0! @ # 9 0!

More information

Stapy_Tsuji_ key

Stapy_Tsuji_ key Python #23 2017.4.12 Python @tsjshg shingo.tsuji@gmail.com 1975 C++ IT Java Web 10 Python Python 3 Python Python Python Python SQL Excel PowerPoint PDF 2 http://pypl.github.io/pypl.html 1 http://blog.codeeval.com/codeevalblog/2016/2/2/most-popular-coding-languages-of-2016

More information

help gem gem gem my help

help gem gem gem my help hikiutils 1234 2017 3 1 1 6 1.0.1 help gem................... 7 gem.................................... 7 gem................................... 7 my help.................................. 7 my help......................

More information

はじめに

はじめに 1 1 Squeak Squeak 1 Squeak Squeak 1.1 Squeak SqueakToys 1 NHK SqueakToys Squeak "Smalltalk" Smalltalker Smalltalk 23 1 Thoru Yamamoto 1 Squeak Smalltalk 1.1.1 Smalltalk Squeak Squeak WindowsMacUNIX Zaurus

More information

: Shift-Return evaluate 2.3 Sage? Shift-Return abs 2 abs? 2: abs 3: fac

: Shift-Return evaluate 2.3 Sage? Shift-Return abs 2 abs? 2: abs 3: fac Bulletin of JSSAC(2012) Vol. 18, No. 2, pp. 161-171 : Sage 1 Sage Mathematica Sage (William Stein) 2005 2 2006 2 UCSD Sage Days 1 Sage 1.0 4.7.2 1) Sage Maxima, R 2 Sage Firefox Internet Explorer Sage

More information

EQUIUM EQUIUM S5010 1

EQUIUM EQUIUM S5010 1 EQUIUM EQUIUM S5010 1 1 1 2 3 4 2 1 2 3 2 3 1 2 3 4 5 6 7 4 1 2 5 1 2 6 1 7 1 2 3 4 5 6 7 1 2 3 4 5 6 3 7 8 9 1 2 3 4 4 5 6 7 8 1 1 2 3 4 10 1 11 12 1 13 14 1 15 16 1 1 2 3 17 1 2 3 18 4 5 6 1 19 1 2 3

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

本機をお使いの方へ

本機をお使いの方へ MA46H/S Windows 98 / NT 4.0 Windows 98 / NT 4.0 MA46H/S BIOS 1999 10 808-877675-132-A 3 AT 6. 1. BIOS P.7 1. Windows 98 Windows Windows 98 Microsoft Windows 98 Windows NT 4.0 Microsoft Windows NT Workstation

More information