JAJP.qxd

Size: px
Start display at page:

Download "JAJP.qxd"

Transcription

1 Agilent E6601A Application Note

2 ...2 E6601A E6601A PC GSM Windows XP Agilent E6601A E6601A E6601A Visual Studio.NET 2

3 E6601A Agilent E6601A 1Windows XP Professional Windows Windows PC PC PC E6601 PC LAN E6601A PC GPIB 3

4 E6601A Windows XP E6601A LAN GPIB USBLAN LAN LANPC LAN E6601ALAN USB USBPC PC 1 1 GPIB GPIB LAN E6601ALAN LAN PC 4

5 PC PC PC E6601APC PC E6601AC++ Visual Basic Agilent VEE Pro Visual Studio Visual Studio.NETVisual Basic Microsoft Web IOIOAgilent PC PC IO IO Web SoftwareIO Libraries Suite IO Libraries Suite 14.1 or above Product Download PC E6601A GPIB GPIB GPIB GPIB Screens Config Configuration MainInstrument Connections GPIB LAN PC E6601A LAN 2 1 PC E6601A PC- LAN 1 LAN PC E6601A LAN E6601A IP E6601AStart Run Run CMD OK ipconfig Enter Windows IP Ethernet Adapter Local Area Connection IP Agilent IO Control Agilent Connection Expert Agilent Connection Expert LAN E6601A Change Properties Change Configurable Properties of This LAN Device E6601A IPOK

6 Agilent IO Control Agilent Connection Expert Agilent Connection ExpertPC Refresh All 1 E6601A LAN Send Commands To This InstrumentAgilent Interactive IO Agilent Interactive IOCommand *IDN?Send Command E6601A Read ResponseE6601A IDN Instrument Session History Agilent Interactive IO Connect Exit 1. Agilent Connection Expert 6

7 SCPI E6601A GSM/GPRS E6831A GSM/GPRS SCPI E6601AGPIB Commands GSM/GPRS CA VISA COM Visual Basic.NET RST 1 Agilent E6601A SCPI Discovery Visual Studio.NET 2 SCPI Discovery E6601A Web 2. Agilent E6601A SCPI Discovery Visual Studio.NET 7

8 3 GSM 1 IO 2 IO E6601A 8

9 1. IOVisual Studio.NETVisual Basic.NETSolution Explorer References Add Reference 4 4. Visual Studio.NET Solution Explorer Add ReferenceCOMVISA COM 3.0 Type Library 5. Visual Studio.NET Add Reference VISA COM 3.0 Type Library OK Add Reference 9

10 2. Visual Basic.NET Agilent VISA COM FormattedIO488 WriteString WriteNumber WriteList WriteIEEEBlock VISA COM ResourceManager Open ReadString ReadNumber ReadList ReadIEEEBlock Visual Basic.NET Option Explicit On Option Strict On Imports Ivi.Visa.Interop Dim ResManager As New ResourceManager Dim TestSet As New FormattedIO488 ' Agilent Connection Expert ' Agilent IO "VISA " ' 'GPIB "VISA " ' "GPIB0::14::INSTR" TestSet.IO CType(ResManager.Open("GPIB0::14::INSTR"), IMessage) 'LAN VISA TestSet.IO = CType(ResManager.Open("TCPIP0::localhost::inst0::INSTR") IMessage) ' TestSet.WriteString("DISPlay:BRIGhtness MEDium") 10

11 3. Agilent VISA COM Clear GPIB Clear *RST ' TestSet.IO.Clear() ' TestSet.WriteString("*RST") ' TestSet.WriteString("*CLS") 11

12 4. SYSTem: CORRection 100 DISPlay:MODE: TRACKing ' RF IN/OUT Amplitude Offset 'State TestSet.WriteString("SYSTem:CORRection:SFRequency MHZ, MHZ, MHZ, MHZ") ' db TestSet.WriteString("SYSTem:CORRection -2.55,-3.12,-3.68,-4.23") ' TestSet.WriteString("DISPlay:MODE:TRACking OFF") 12

13 5. RF RF RF PDTCH ARFCN RF RF *** *** ' 'RF TestSet.WriteString("RFANalyzer:CONTrol:FREQuency:AUTO: GCALibration ON") 'DCS ARFCN 512 TestSet.WriteString("TRANsceiver:CHANnel:DCS 512") 'EGSM ARFCN 5 TestSet.WriteString("TRANsceiver:CHANnel:EGSM 5") 'GSM450 ARFCN 259 TestSet.WriteString("TRANsceiver:CHANnel:GSM ") ' GSM/GPRS TestSet.WriteString("TRANsceiver:BAND:GCALibration DCS") 'RF -70 dbm TestSet.WriteString("RFGenerator:POWer:GCALibration -70") 'RF TestSet.WriteString("RFANalyzer:CONTrol:POWer:AUTO: GCALibration ON") ' 2 TestSet.WriteString("RFANalyzer:BURSt 2") 'DCS 1 Mobile Station TX Level 10 TestSet.WriteString("RFANalyzer:MS:TXLevel:DCS:BURSt1 10") 'DCS 2 Mobile Station TX Level 12 TestSet.WriteString("RFANalyzer:MS:TXLevel:DCS:BURSt2 12") ' Training Sequence Code (TSC) 2 ' TestSet.WriteString("RFANalyzer:BURSt:TYPE TSC2") 13

14 6. 2 ' ' TestSet.WriteString("SETup:PMODulation:CONTinuous OFF") ' 100 TestSet.WriteString("SETup:PMODulation:COUNt 100") 'VISA 10 ' TestSet.IO.Timeout = ' 5 TestSet.WriteString("SETup:PMODulation:TIMeout 5S") ' TestSet.WriteString("SETup:PMODulation:PVTime:TIME -28uS,- 10uS,321.2uS,552.8uS,570.8uS") ' TestSet.WriteString("SETup:PMODulation:SYNC MIDamble") 'RF 'RF TestSet.WriteString("SETup:RFCHannel:CONTinuous OFF") ' 150 TestSet.WriteString("SETup:RFCHannel:COUNt 150") 'RF 5 TestSet.WriteString("SETup:RFCHannel:TIMeout 5S") 'RF1 khz TestSet.WriteString("SETup:RFCHannel:FILTer BWKHZ1") '1 khz1.5 ms TestSet.WriteString("SETup:RFCHannel:TRIGger:DELay:BWKHZ1 1.5mS") 14

15 7. 2 SETup:<Measurement Suite> INITiate:<Measurement Suite>,... FETCh results INITiate:<Measurement Suite> <Measurement>,... FETCh results 2 SETup:<Measurement Suite> ' TestSet.WriteString( SETup:PMODulation:INITiate PFERror ) ' TestSet.WriteString("INITiate:PMODulation") ' TestSet.WriteString("FETCh:PMODulation:PFERror?") FetchPmodulationPferror = CType(TestSet.ReadList(), Array) INITiate:<Measurement Suite> <Measurement>,... ' TestSet.WriteString("INITiate:PMODulation PFERror") ' TestSet.WriteString("FETCh:PMODulation:PFERror?") FetchPmodulationPferror = CType(TestSet.ReadList(), Array) 15

16 8. Tx/Rx ARFCN ' GSM/GPRS GSM450 'ARFCN 259 TestSet.WriteString("TRANsceiver:BAND:GCALibration GSM450") 'GSM450 ' 21 TestSet.WriteString("RFANalyzer:MS:TXLevel:GSM450:BURSt1 21") ' ' TestSet.WriteString("SYSTem:PRESet3") FormattedIO488 Close 'IO TestSet.IO.Close() 16

17 E6601A PC PC E6601A PC PC GPIB TestSet.IO = CType(ResManager.Open("GPIB0::14::INSTR"), IMessage) LAN 2 1. Hard coded E6601A0429 TestSet.IO = CType(ResManager.Open("TCPIP0::E6601A0429::inst0::INSTR") IMessage) 2. Generic TestSet.IO = CType(ResManager.Open("TCPIP0::localhost::inst0::INSTR"), IMessage).EXE E6601A USB GPIB LAN Windows E6601A E6601APC E6601A E6601AAgilent Web 17

18 GSM GSM RF Option Explicit On Option Strict On Imports Ivi.Visa.Interop Public class Demo Private ResManager As New ResourceManager Private TestSet As New FormattedIO488 Friend Sub Measurement() Dim FetchPmodulationPferror as Array ' Agilent Connection Expert ' Agilent IO "VISA " ' 'GPIB "VISA " ' "GPIB0::14::INSTR" TestSet.IO = CType(ResManager.Open("GPIB0::14::INSTR"), IMessage) ' TestSet.IO.Clear() ' TestSet.WriteString("*RST") ' TestSet.WriteString("*CLS") ' RF IN/OUT Amplitude Offset 'State TestSet.WriteString("SYSTem:CORRection:SFRequency MHZ, MHZ, MHZ, MHZ") ' db TestSet.WriteString("SYSTem:CORRection -2.55,-3.12,-3.68,-4.23") ' TestSet.WriteString("DISPlay:MODE:TRACking OFF") ' *** *** 'RF TestSet.WriteString("RFANalyzer:CONTrol:FREQuency:AUTO:GCALibration ON") 'DCS ARFCN 512 TestSet.WriteString("TRANsceiver:CHANnel:DCS 512") 'EGSM ARFCN 5 TestSet.WriteString("TRANsceiver:CHANnel:EGSM 5") 'GSM450 ARFCN 259 TestSet.WriteString("TRANsceiver:CHANnel:GSM ") ' GSM/GPRS TestSet.WriteString("TRANsceiver:BAND:GCALibration DCS") 'RF -70 dbm TestSet.WriteString("RFGenerator:POWer:GCALibration -70") 'RF TestSet.WriteString("RFANalyzer:CONTrol:POWer:AUTO:GCALibration ON") ' 2 TestSet.WriteString("RFANalyzer:BURSt 2") 18 'DCS 1 Mobile Station TX Level 10 TestSet.WriteString("RFANalyzer:MS:TXLevel:DCS:BURSt1 10") ''DCS 2 Mobile Station TX Level 12 TestSet.WriteString("RFANalyzer:MS:TXLevel:DCS:BURSt2 12")

19 ' Training Sequence Code (TSC) 2 ' TestSet.WriteString("RFANalyzer:BURSt:TYPE TSC2") ' ' TestSet.WriteString("SETup:PMODulation:CONTinuous OFF") ' 100 TestSet.WriteString("SETup:PMODulation:COUNt 100") 'VISA 10 ' TestSet.IO.Timeout = ' 5 TestSet.WriteString("SETup:PMODulation:TIMeout 5S") ' TestSet.WriteString("SETup:PMODulation:PVTime:TIME -28uS,- 10uS,321.2uS,552.8uS,570.8uS") ' TestSet.WriteString("SETup:PMODulation:SYNC MIDamble") 'RF 'RF TestSet.WriteString("SETup:RFCHannel:CONTinuous OFF") ' 150 TestSet.WriteString("SETup:RFCHannel:COUNt 150") 'RF 5 TestSet.WriteString("SETup:RFCHannel:TIMeout 5S") 'RF1 khz TestSet.WriteString("SETup:RFCHannel:FILTer BWKHZ1") '1 khz1.5 ms TestSet.WriteString("SETup:RFCHannel:TRIGger:DELay:BWKHZ1 1.5mS") ' TestSet.WriteString( SETup:PMODulation:INITiate PFERror ) ' TestSet.WriteString("INITiate:PMODulation PFERror") ' TestSet.WriteString("FETCh:PMODulation:PFERror?") FetchPmodulationPferror = CType(TestSet.ReadList(), Array) ' TestSet.WriteString("SYSTem:PRESet3") 'IO TestSet.IO.Close() End sub End Class 19

20 :00-19:00 FAX Web 24 TEL ( ) FAX ( ) Copyright 2006 A UP DATE Agilent Agilent Direct Agilent Open Agilent Agilent PC I/O Windows Visual Studio Visual Studio.NET Visual Basic XP Professional Microsoft December 6, JAJP DEP

JAJP.indd

JAJP.indd Agilent Application Note 1....1 2. MIMO...2 2.1...2 2.2 MIMO...3 3. Agilent MIMO...4 3.1 P...4 3.2 U2000 USB...7 4....10 4.1 P...11 4.2 U2000...16 2 T 0 T 1 = 1.15 0.26 0.39 1.03 R 0 R 1 CB.log 2 1 C MIMO

More information

5989_7572JAJP(POD).pdf

5989_7572JAJP(POD).pdf Agilent Data Sheet 2 3 UNZ SCPI 5ms 1.15 ms 750 s 5ms 900 s 600 s 4 2 1EA 3 520 100 250 khz 11 14 > 250 khz 3.2 GHz 11 15 > 3.2 20 GHz 11 18 532 540 100 250 khz 11 14 250 khz 3.2 GHz 7 14 > 3.2 17 GHz

More information

JAJP.indd

JAJP.indd Agilent VEE Pro 9.2 Agilent VEE Express 9.2 Data Sheet Agilent Agilent VEE Agilent VEE 9.2 Windows 7 SCPI Completion UserFunction LXI XML VEE Preferences Windows Agilent VEE Agilent VEE SCPI CompletionCode

More information

JAJP.qxd

JAJP.qxd Agilent DC N6705A N6715A N6731B-36B N6741B-46B N6751-54A N6761A-62A N6773A-76A Product Overview 2 3 DMM PC 90 N6705A DC 4 1 3 DCN6705A DC 4 5 DUT DC 6 1 2 30 DC 7 * 5 ms 5 ms 4 100 2 100 3 100 512 512

More information

Microsoft Word - idnExcelVbaVisaCom01.docx

Microsoft Word - idnExcelVbaVisaCom01.docx Excel 2010 / VBA による 測 定 器 制 御 プログラム 入 門 VISA COM ライブラリ 編 Excel 2010 / VBA からアジレント IO Libraries Suite に 含 まれている VISA COM ライブラリ を 呼 び 出 すことにより 測 定 器 を 制 御 することが 可 能 です 本 アプリケーション ノートでは 測 定 器 にコマンドを 送 り

More information

PCと測定器を接続するためのAgilentコネクティビティ・ハードウェア

PCと測定器を接続するためのAgilentコネクティビティ・ハードウェア PC Agilent Data Sheet GET HOOKED! Agilent GPIB/ Agilent GPIB Agilent GPIB USB LAN PC PCI PCIe USB LAN I/O... 3 Agilent IO16.0... 4 Agilent 82357B USB/GPIB... 5 Agilent 82350B PCI GPIB... 6 Agilent 82351A

More information

テスト システムでの 手 法 の 比 較 1 3 A/V 1 2 問 題 の 解 決 I/O DUT 1 図 1. テスト システムのコンポーネント I/O VEE Pro MATLAB LV Visual Studio VISA NI-488 SICL SCPI IVI-COM IVI-C VXI

テスト システムでの 手 法 の 比 較 1 3 A/V 1 2 問 題 の 解 決 I/O DUT 1 図 1. テスト システムのコンポーネント I/O VEE Pro MATLAB LV Visual Studio VISA NI-488 SICL SCPI IVI-COM IVI-C VXI 1 適 切 に 移 行 するための 準 備 Application Note 1465-32 1990 GPIB VXI 90 PXI 2005 LXI 2 3 4 2 A/V 1 1 A/V テスト システムでの 手 法 の 比 較 1 3 A/V 1 2 問 題 の 解 決 I/O DUT 1 図 1. テスト システムのコンポーネント I/O VEE Pro MATLAB LV Visual

More information

5989_7633JAJP(POD).pdf

5989_7633JAJP(POD).pdf RF 2 RF pre-rct RPT PCT pre-miot pre-miot N6430A WiMAX N6421A WiMAX PC N6422C WiMAX N6423C WiMAX IP PC E6651A Mobile WiMAX E6655A WiMAX MS MIMO 3 RF pre-rct RPT PCT pre-miot pre-miot RF pre-rct RPT PCT

More information

5988_4096JA.qxd

5988_4096JA.qxd Agilent Infiniium 89601A Product Note Agilent Infiniium 1.......................................................................... 3 1.1 89601A VSA................................................... 3

More information

Agilent M9302A PXI Data Sheet 3 GHz 10 GHz...

Agilent M9302A PXI Data Sheet 3 GHz 10 GHz... Agilent M9302A PXI Data Sheet 3 GHz 10 GHz... Agilent M9302A PXILO M9302A 23U PXI VCO3 GHz 10 GHz LO Agilent M9392A PXI M9302A VSA 26.5 GHz 3 GHz 10 GHz 0.1 Hz 1 ms 115 dbc/hz 10 GHz 10 khz PXI cpci J1

More information

5989_2365JAJP.qxd

5989_2365JAJP.qxd Agilent Application Note HS-PDSCH(s) HS-DPCCH HS-SCCH 2 1 4 6 5 10 12 8 7 11 13 9 3 ACK ACK ACK ACK ACK 2 www.agilent.co.jp/find/3g 3 4 10 ms 0 1 2 3 4 3 x T SLOT = 7680 5 6 7 CRC HARQ HS-DSCH 16QAM 1

More information

RF AgilentPXI RF/ RF/ 250 MHz 26.5 GHz Agilent M9392A Agilent Data Viewer Agilent 89600 VSA X-COM Spectro-X 2

RF AgilentPXI RF/ RF/ 250 MHz 26.5 GHz Agilent M9392A Agilent Data Viewer Agilent 89600 VSA X-COM Spectro-X 2 M9392A PXI Application Note RF RF 2PXI RF/ RF AgilentPXI RF/ RF/ 250 MHz 26.5 GHz Agilent M9392A Agilent Data Viewer Agilent 89600 VSA X-COM Spectro-X 2 RF 4 5 6 10 11 13 14 15 15 15 3 RF RF 2PXIRF RAID

More information

JAJP.qxd

JAJP.qxd Agilent PSA LAN 217 LAN LAN PSALAN 217 802.11a/b/gLAN 6 6 12 8 8 11 CCDF 9 2 3 PSALAN 802.11b DSSS/CCK/PBCC 802.11a OFDM 802.11g OFDM/ PHY ERP 217 IEEE EVM IEEE 802.11 EVMEVM CCDF PSA 140 40 MHz 122 80

More information

Agilent BenchVueソフトウェア(34840B)

Agilent BenchVueソフトウェア(34840B) Agilent BenchVue 34840B Data Sheet BenchVue 3Excel Word MATLAB FAQ 1 Agilent PC BenchVue FAQ BenchVue Agilent BenchVueDMM/ Word Excel MATLAB FAQ 2 BenchVue BenchVue BenchVue PC BenchVueAgilent BenchVue

More information

5988_3935JA.qxd

5988_3935JA.qxd Agilent E4438C ESG E4438C ESG Agilent E4438C ESGRF 6 GHz IFRF E4438C ESG I/Q RF 80 MHzRFI/Q I/Q160 MHzRF 64 M 1 G Signal StudioLTE WiMAX TM LANW-CDMAcdma2000 GSM DVB Baseband StudioI/O PC 10BaseT LANGPIB

More information

スライド 1

スライド 1 Agilent 簡易取扱説明書 2009 年 12 月 24 日 この簡易説明書は Agilent ( 以後 IO Lib.) の簡易説明書です IO Lib. は下記の 3 つを提供いたします 測定器と PC との接続を確認するユーティリティ プログラム インターフェイス製品を制御するドライバ プログラム開発環境から呼び出せるライブラリ IO Lib. により簡単に PC と測定器を接続し制御することができます

More information

JAJP.qxd

JAJP.qxd Agilent N4010A IEEE 802.15.4/ZigBee Application Note 1572 ZigBeePHY RF IEEE 802.15.4 Agilent N4010A................................................................. 2 ZigBee.................................................................

More information

5989_0871JA.qxd

5989_0871JA.qxd Agilent 89650S Technical Overview 89650S 4080 MHz75 db3 Hz 26.5 GHzRF/ 89650SAgilentPSA 89601A E4440A PSA PSA Agilent PSAIF 10 MHz FFT 3 E4443A 20 MHz6.7 GHz E4445A 20 MHz13.2 GHz E4440A 20 MHz26.5 GHz

More information

JA.qxd

JA.qxd Application Note Bluetooth Bluetooth Bluetooth Bluetooth Bluetooth Bluetooth Bluetooth Bluetooth Bluetooth Bluetooth Bluetooth 2 Bluetooth Bluetooth Bluetooth Bluetooth Bluetooth Bluetooth Bluetooth Bluetooth

More information

JAJP.indd

JAJP.indd Agilent LCR 1 MHz 3 GHz Agilent LCR SMD EMI 3.5 mm 2 m 020 1 m 0.9 ms/1 2.1 ms/2 3.7 ms/3 0.8% 140 m 4.8 k 4287A LCR SCPI 1 7 mm Rdc I/F U/I 10.4 LCD GPIB/LAN/USB Windows OS 277 mm 1. 4287A SMD DC 2 Agilent

More information

JAJP.indd

JAJP.indd 8648A/B/C/D EXG X Technical Overview AgilentX RF 3 8648A/B/C/DEXG X...3...7 EXG X...9...9...10...10...10...12...12...13...13...13...14...14...15 Web...15...15 2 8648A/B/C/D EXG X Agilent 8648A/B/C/D 1996

More information

ヒント 1: Agilent 82357B USB/GPIB コンバータを NI 社の MAX または LabVIEW で使用する方法 Agilent 82357B USB/GPIB コンバータを初めてインストールする際に NI LabVIEW または Agilent IO ライブラリ 1 をまだイ

ヒント 1: Agilent 82357B USB/GPIB コンバータを NI 社の MAX または LabVIEW で使用する方法 Agilent 82357B USB/GPIB コンバータを初めてインストールする際に NI LabVIEW または Agilent IO ライブラリ 1 をまだイ Agilent Application Note はじめに ハードウェアの接続と制御は インタフェース全体の最初のステップです GPIB(general-purpose interface bus) USB( ユニバーサル シリアル バス ) LAN( ローカル エリア ネットワーク ) LXI(LAN extensions for Instrumentation) などの測定器のインタフェース規格があり

More information

5990-7569JAJP.indd

5990-7569JAJP.indd Agilent 33503A BenchLink Waveform Builder Pro/Basic Agilent InfiniiVision Data Sheet DC FFT CCDF Agilent 33503A BenchLink Waveform Builder Pro Agilent BenchLink Waveform Builder Pro Microsoft Windows BenchLink

More information

N4010A 無線コネクティビティ テスト セットおよび N4011A MIMO/ マルチポート アダプタ Configuration Guide 概要 Agilent N4010A Bluetooth LAN WLAN ZigBee TM Agilent N4011A MIMO/ 1/4 N401

N4010A 無線コネクティビティ テスト セットおよび N4011A MIMO/ マルチポート アダプタ Configuration Guide 概要 Agilent N4010A Bluetooth LAN WLAN ZigBee TM Agilent N4011A MIMO/ 1/4 N401 N4010A 無線コネクティビティ テスト セットおよび N4011A MIMO/ マルチポート アダプタ Configuration Guide Agilent N4010A Bluetooth LAN WLANZigBee TM Agilent N4011A MIMO/ 1/4 N4010A N4011AMIMO DUT MIMODUT N4010A RF IN/OUT N4010A N4010A

More information

N9080A LTE FDDN9082A LTE TDD LTE FDD/LTE TDD LTE FDD/LTE TDD X 3GPP LTERF RF LTE enbue 3GPP Agilent X 22 LTE FDD/LTE TDD X X CPU I/O 100 X X XX 14 www

N9080A LTE FDDN9082A LTE TDD LTE FDD/LTE TDD LTE FDD/LTE TDD X 3GPP LTERF RF LTE enbue 3GPP Agilent X 22 LTE FDD/LTE TDD X X CPU I/O 100 X X XX 14 www N9080A LTE FDD N9082A LTE TDD X LTE FDD/TDDeNBUE LTERF Technical Overview SCPI X N9080A LTE FDDN9082A LTE TDD LTE FDD/LTE TDD LTE FDD/LTE TDD X 3GPP LTERF RF LTE enbue 3GPP Agilent X 22 LTE FDD/LTE TDD

More information

JAJP.indd

JAJP.indd Agilent Data Sheet www.agilent.co.jp/find/pcie 2 Gen 2 Ready TCL Windows DCOM Agilent E2960B N2X E2960A PCIe TM 2.0 GUI PCIe 2.0 E2960B API E2960AGen 1 API Gen 1 Gen2 PCI Express Gen 1 E2960B PCI Express

More information

5989-1550JAJP.qxd

5989-1550JAJP.qxd Agilent Application Note 150-10 Agilent 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 A t 27 28 29 30 31 λ λ 192-8510 9-1 9:00-19:00 FAX

More information

CD Microsoft, MS-DOS, Windows 95, Windows 98,Windows Me, Windows NT, Windows 2000, Visual Basic, Visual Basic.NET, Visual C#, Excel, ActiveX Microsoft

CD Microsoft, MS-DOS, Windows 95, Windows 98,Windows Me, Windows NT, Windows 2000, Visual Basic, Visual Basic.NET, Visual C#, Excel, ActiveX Microsoft CD Microsoft, MS-DOS, Windows 95, Windows 98,Windows Me, Windows NT, Windows 2000, Visual Basic, Visual Basic.NET, Visual C#, Excel, ActiveX Microsoft Corporation ... iv... v... vi... 1-1 1.1... 1-2 1.2...

More information

JAJP.indd

JAJP.indd Agilent Technologies 1000A/B Data Sheet Agilent 1000 Agilent 1000 3 kg 2 4 DSO1052B DSO1072B DSO1102B DSO1152B DSO1022A 50 MHz 70 MHz 100 MHz 150 MHz 200 MHz DSO1004A DSO1014A DSO1024A 60 MHz 100 MHz 200

More information

(Microsoft Word JAJP_VisualBasic_VisualC# による計測_統計機能を用いたGO-NOGO判定サンプルプログラムガイ?20

(Microsoft Word JAJP_VisualBasic_VisualC# による計測_統計機能を用いたGO-NOGO判定サンプルプログラムガイ?20 VisualBasic VisualC# による計測 統計機能を用いた GO-NOGO 判定サンプルプログラムガイド 内容 1. はじめに... 3 2. 制御プログラム作成の準備... 3 2.1. ソフトウェア環境... 3 2.2. ハードウェア環境... 4 2.3. 測定器の接続と VISA アドレスの確認... 4 3. 参照ライブラリの追加... 6 3.1. Visual Basic

More information

Oracle Lite Tutorial

Oracle Lite Tutorial GrapeCity -.NET with GrapeCity - SPREAD Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 Document Control Internal Use Only Author Hiroshi Ota Change Logs Date Author Version Change

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

Agilent 33600Aシリーズ Trueform波形発生器

Agilent 33600Aシリーズ Trueform波形発生器 Agilent 33600A Trueform DATA SHEET 33600ATrueform DDS 1 G /s120 MHz 64 M 1 ps DDS200 DDS 1/5 Agilent BenchVue With TECHNOLOGY Trueform Trueform DDS 20DDS DDS Trueform DDS DDS 5 Agilent Trueform DDS TrueformDDS

More information

5989_7698JAJP(POD).pdf

5989_7698JAJP(POD).pdf Agilent Technical Overview 2 LTE FDD 1.4 3 5 10 15 20 72 180 300 600 900 1200 3 PBCH Physical Broadcast Channel QPSK PDCCH Physical Downlink Control Channel QPSK ACK/NACK PDSCH PMCH PCFICH PHICH P-SCH

More information

Keysight Technologies E5080A ネットワーク・アナライザ E5092A 拡張可能マルチポートテストセット

Keysight Technologies E5080A ネットワーク・アナライザ E5092A 拡張可能マルチポートテストセット Keysight Technologies E5080A 9 khz 4.5/6.5/9 GHz E5092A Configuration Guide 02 Keysight E5080A E5092A - Configuration Guide E5080A ENA E5080A E5092A E5080A E5080A ENA E5080A 2 4SRF 12.1 LCD 1 4.5 GHz 9

More information

E

E Keysight E580B LAN/GPIB/USB ゲートウェイ クイック スタート ガイド LAN/GPIB/USB Gateway LAN GPIB USB RS232 FAULT PRESET l Agilent Technologies E580B LAN/GPIB/USB ゲートウェイ標準付属品 標準付属品 60 mm E580B POWER o 226.5 mm 238 mm Keysight

More information

Agilent U7238A MIPI D-PHY Infiniium Data Sheet エンベディッド D-PHY データ リンクの検証とデバッグ Agilent U7238A MIPI D-PHY Infiniium D-PHY CSI DSI D-PHY U7238A MIPI D-PHY

Agilent U7238A MIPI D-PHY Infiniium Data Sheet エンベディッド D-PHY データ リンクの検証とデバッグ Agilent U7238A MIPI D-PHY Infiniium D-PHY CSI DSI D-PHY U7238A MIPI D-PHY Agilent U7238A MIPI D-PHY Infiniium Data Sheet エンベディッド D-PHY データ リンクの検証とデバッグ Agilent U7238A MIPI D-PHY Infiniium D-PHY CSI DSI D-PHY MIPI Alliance Specification for D-PHY v0.90.00 Section 8 4 GHz TX MIPI

More information

unitech PA500 Enterprise PDA Rev. A

unitech PA500 Enterprise PDA Rev. A unitech PA500 Enterprise PDA Rev. A PA500 Enterprise PDA Unitech Copyright 2007 unitech Electronics Co., Ltd. Web : http:\\www.unitech-japan.co.jp Bluetooth Bluetooth SIG Microsoft Windows ActiveSync

More information

WinDriver PCI Quick Start Guide

WinDriver PCI Quick Start Guide WinDriver PCI/PCI Express/PCMCIA 5! WinDriver (1) DriverWizard (2) DriverWizard WinDriver (1) Windows 98/Me/2000/XP/Server 2003/Vista Windows CE.NET Windows Embedded CE v6.00 Windows Mobile 5.0/6.0 Linux

More information

JAJP.indd

JAJP.indd Agilent DMM DISPLAY DMM MEASURE Truevolt MOVE DMM 34401A DMM 100 Agilent 34461A 34401A 6½ DMM Agilent 34460A 6½ Agilent DMM DisplayDMM 4.3109 mm 34461A 4.3 4.3AgilentTruevolt Truevolt D I S P L A Y 2 DisplayDMM

More information

Microsoft Word JAJP_VisualBasic_VisualC# によるシリアルデコードの取得_InfiniiVision編_ docx

Microsoft Word JAJP_VisualBasic_VisualC# によるシリアルデコードの取得_InfiniiVision編_ docx VisualBasic VisualC# によるシリアルデコードの取得 内容 1. はじめに... 3 2. 制御プログラム作成の準備... 3 2.1. ソフトウェア環境... 3 2.2. ハードウェア環境... 4 2.3. 測定器の接続と VISA アドレスの確認... 4 3. 参照ライブラリの追加... 6 3.1. Visual Basic の場合... 6 3.2. Visual C#

More information

M9077A無線LAN a/b/g/n/ac M9391A PXIeベクトル・シグナル・アナライザ用Xシリーズ測定アプリケーション

M9077A無線LAN a/b/g/n/ac M9391A PXIeベクトル・シグナル・アナライザ用Xシリーズ測定アプリケーション M9077A LAN 802.11a/b/g/n/ac M9391A PXIe X Technical Overview IEEE 802.11a/b/g/n/ac LAN 802.11ac 20/40/80/160 MHz 80 80 MHz PCSCPI SCPI 1 M9391A PXIe VSA 4 LAN 802.11a/b/g/n/ac X Agilent M9391A PXIePXI

More information

Cisco Configuration Professional(CCP)Express 3.3 による Cisco 841M J シリーズ初期設定ガイド

Cisco Configuration Professional(CCP)Express 3.3 による Cisco 841M J シリーズ初期設定ガイド Cisco Configuration Professional CCP Express 3.3 Cisco 841M J WAN/LAN Cisco Configuration Professional CCP Express 3.3 p3 CCP Express 3.3 p4 Cisco Configuration Professional ExpressCCP Express 3.3 Cisco

More information

10.00mm 2 A4 0 A4 MS 72pt 25mm MS 25mm MS 2

10.00mm 2 A4 0 A4 MS 72pt 25mm MS 25mm MS 2 Silhouette Studio silhouette CAMEO Silhouette Studio silhouette CAMEO Windows Silhouette Studio mm mm F mm OK 1 10.00mm 2 A4 0 A4 MS 72pt 25mm MS 25mm MS 2 3 4 Silhouette Silhouette Silhouette silhouette

More information

USB 電気パラメータを簡単に検証 USB USB-IF USB OTG 図. Infiniium USB コンプライアンス テストは Analyze メニューのサブメニューからアクセスできます 図. Infiniium USB コンプライアンス テストの設定と起動が つのウィンドウから行えます

USB 電気パラメータを簡単に検証 USB USB-IF USB OTG 図. Infiniium USB コンプライアンス テストは Analyze メニューのサブメニューからアクセスできます 図. Infiniium USB コンプライアンス テストの設定と起動が つのウィンドウから行えます Agilent Technologies N546A N547A Infiniium USB Data Sheet N546A Infiniium オシロスコープ用 USB コンプライアンス テスト ソフトウェアは オフィシャル USB- IFMATLAB スクリプトを使用して USB.0 デバイス ホスト ( エンベデッドホストも含む ) ハブ OTG (On-The-Go) のコンプライアンスを高い信頼性で検証できます

More information

SR-X526R1 サーバ収容スイッチ ご利用にあたって

SR-X526R1 サーバ収容スイッチ ご利用にあたって SR-X526R1 P3NK-3432-05Z0 526R1 V01 SR-X526R1 V01 2009 10 2010 4 2 2011 5 3 2012 3 4 2012 11 5 Microsoft Corporation Copyright FUJITSU LIMITED 2009-2012 2 SR-X526R1 V01...2...5...5...5...5...6...7...8...8...11...11...11...11...11...11...12...12...12...12...13...13...13

More information

5989-4866JAJP.qxd

5989-4866JAJP.qxd Agilent Data Sheet 2 3 26 24 22 20 18 16 14 12 10 0.1 750 1700 2200 2700 3200 4 0.2 0.15 0.1 0.05 0 0.05 0.1 0.15 0.2 0.1 200 800 1400 2000 2800 3200 5 6 40 50 60 70 80 90 100 110 120 130 140 150 160 9

More information

CommandMatrix_8230E

CommandMatrix_8230E 4. USB 4. USB 4.1 USB2.0 Full Speed USB (Universal Serial Bus) USB 4.2 USB : USB2.0 Full Speed : USB B : A112010 USB(A) -USB B 1 m ID: MYID 1 127 : : ASCII : ASCII : ADC USB 4.3 USB 4.3.1 ADC USB ADC USB

More information

5988_7780JA.qxd

5988_7780JA.qxd PCI Express PCI Express PCI /OS PCI Express 1. PCI Express 1000 PCI PCI-X CPU 10 GHz PCI Express PCI PCI Express PCI ExpressPCI/PCI-X33/133 MHz 2.5 Gbps PCI Express32 80 Gbps PCI Express Point-to- Point

More information

Keysight Technologies E5072A ENAシリーズ ネットワーク・アナライザ 30 kHz ~ 4.5/8.5 GHz

Keysight Technologies E5072A ENAシリーズ ネットワーク・アナライザ 30 kHz ~ 4.5/8.5 GHz Keysight Technologies E5072A ENA 30 khz 4.5/8.5 GHz Technical Overview 02 Keysight E5072A ENA 30 khz 4.5/8.5 GHz Technical Overview ENA 20 dbm 151 db 7 ms2401 160 16 VBA 10.4TFT ECal USB 20 dbm 85 8 dbm

More information

getstart.book

getstart.book Agilent Technologies 82357A USB/GPIB Interface for Windows はじめにお読みください 重要 Agilent IO Libraries ソフトウェアをインストールしてから 82357A インタフェースを PC に接続してください 1 82357Aをインストールする前に 箱の中味を確認してください 本紙の他に 82357A USB/GPIB Interface

More information

 

  LogicStudio Getting Started Manual December, 2010 LeCroy Corporation 700 Chestnut Ridge Road Chestnut Ridge, NY, 10977-6499 Tel: (845) 578-6020, Fax: (845) 578 5985 : 1 a)b)c) 90 : 2010 by LeCroy Corporation.

More information

Microsoft PowerPoint JAJP_IO_Lib_16_1.pptx

Microsoft PowerPoint JAJP_IO_Lib_16_1.pptx Agilent IO Libraries Suite 16.1 Update 1 簡易取扱説明書 この簡易取扱説明書は Agilent IOLibrariesSuite16.1 ( 以後 IO Lib. ) の簡易説明書です 詳細につきましては各 Help や下記の弊社 web をご参照ください [ IO Libraries Suite 16.1 ] http://www.home.agilent.com/agilent/product.jspx?nid=-34466.977662.00&lc=jpn&cc=jp&pselect=sr.looking

More information

Keysight 89601B/BN-SSA スペクトラム解析 VSAソフトウェア

Keysight 89601B/BN-SSA スペクトラム解析 VSAソフトウェア Keysight 89601B/BN-SSA 89600 VSA Technical Overview PXI M9391A 6 GHzM9393A 27 GHz PXIe VSA 100 GHz/s RF 89600 VSA ...4...5...6 89600 VSA...6 SCPI...8 M9000...8...8 89601B/BN SSA...9...12...13...13 03 Keysight

More information

Keysight Technologies 8753からENAネットワーク・アナライザにアップグレードする7つの理由

Keysight Technologies 8753からENAネットワーク・アナライザにアップグレードする7つの理由 Keysight Technologies 8753 ENA 7 Application Note 8753 8753 ENA ENA 1 8753ENA E5071C/E5072A E5071C/E5072A E5071C ENA 8753 E5071CRF 9/100 khz 4.5/6.5/8.5 GHz 300 khz 14/20 GHz 2 4 E5072A 30 khz 4.5/8.5

More information

5991-0768JAJP.indd

5991-0768JAJP.indd RF Application Note brick wall RF Agilent X-COM Systems COTS TB COTS 4 2 Agilent 1 GB TB 1 RF RF 1. 3 2 Agilent X Agilent PXA MXAEXA X IF X-COM IQC-2110 I/Q IQC-2110 I/Q GPS X-COM 2 4 8 1216 TB X-COM Spectro-X

More information

JAJP.qxd

JAJP.qxd Agilent Technologies InfiniiVision 6000L Data Sheet LXI class C 1U4 DSO4 1U4.45 cm LXI class C 100 MHz500 MHz1 GHz 4 G/s 8 MMegaZoom USBLANGPIBXGA 812 Web IVI-COM 6000A100 InfiniiVision 6000L 1U19 48 cm

More information

Oracle Lite Tutorial

Oracle Lite Tutorial GrapeCity -.NET with GrapeCity - FlexGrid Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 Document Control Internal Use Only Author Hiroshi Ota Change Logs Date Author Version Change

More information

LR DEVICE Version 1.1 706434 / 01 04 / 2017 1................................................ 3 1.1............................................... 3 2................................................ 3

More information

HP Server tc2120 Microsoft Windows 2000 Server SP3 HP P

HP Server tc2120 Microsoft Windows 2000 Server SP3 HP P HP Server tc2120 Microsoft Windows 2000 ServerSP3 HP P312977-191 200210 Hewlett-Packard Company Hewlett- Packard Company Hewlett-Packard Company Intel Corporation MicrosoftMS-DOSWindows Windows NT Microsoft

More information

untitled

untitled LAUNCH SYSTEM V 2.3 VFit VTeach VRange 1 2011 3 AccuVectorX Launch System...4 (Windows XP)...5 (Windows Vista/Windows 7)...6...6...7...7 AccuSport AccuVectorX...8 Windows XP...9 Windows Vista 7. 10 (Windows

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

AC3DGmst.ps

AC3DGmst.ps IBM Access Connections 3.3x : 2004 11 2 27K6962 URL http://www.ibm.com/jp/manuals/main/mail.html IBM http://www.ibm.com/jp/manuals/ (URL ) IBM Access Connections Deployment Guide Version 3.3x 1 2004.11

More information

Agilent 1 InfiniiVision X InfiniiVision X 26 Agilent InfiniiVision X InfiniiVision 2000 X InfiniiVision 3000 X MHz MHz

Agilent 1 InfiniiVision X InfiniiVision X 26 Agilent InfiniiVision X InfiniiVision 2000 X InfiniiVision 3000 X MHz MHz InfiniiVision 3000 X Data Sheet Agilent 1 InfiniiVision X InfiniiVision X 26 Agilent InfiniiVision X InfiniiVision 2000 X InfiniiVision 3000 X 2 4 70 100 200 MHz 100 200 350 500 MHz 1 G/s 1 2 G/s 2 G/s

More information

RT300i/RT140x/RT105i 取扱説明書

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

More information

JAJP.qxd

JAJP.qxd Agilent U7231A DDR3 コンプライアンス テスト アプリケーション Infiniium 54850/80000/90000シリーズ オシロスコープ用 Data Sheet DDR3 Agilent U7231A DDR3 DDR3 JEDEC 1 JESD79-3A DDR3 SDRAM Advanced Debug DDR3DDR2/DDR1 DDR2 DDR3 FBGA U7231A

More information

untitled

untitled Visual Basic.NET 1 ... P.3 Visual Studio.NET... P.4 2-1 Visual Studio.NET... P.4 2-2... P.5 2-3... P.6 2-4 VS.NET(VB.NET)... P.9 2-5.NET... P.9 2-6 MSDN... P.11 Visual Basic.NET... P.12 3-1 Visual Basic.NET...

More information

Keysight Technologies E36300Aシリーズ 3出力 DC電源

Keysight Technologies E36300Aシリーズ 3出力 DC電源 Keysight Technologies E36300A 3 DC Data Sheet 02 Keysight E36300A 3 DC - Data Sheet DC50 3 E36300 3 E36300 3 E36311A 3 6 V 5 A25 V 1 A 80 W USB E36312A 3 6 V 5 A 2 25 V 1 A 80 W LAN USB E36313A 3 6 V 10

More information

ERA-201D1

ERA-201D1 4-652-247-01(1) AIBO LAN ERA-201D1 2000 Sony Corporation 6 8 AIBO b 1 AIBO 2 AIBO LAN AIBO 3 AIBO 2 3 AIBO http://www.aibo.com/ 4 AIBO AIBO OPEN-R OPEN-R MEMORY STICK TM ... 2... 9 AIBO LAN... 11... 12

More information

Microsoft Word - idnCppVisa01.doc

Microsoft Word - idnCppVisa01.doc Visual Studio Express 2012 による 測定器制御プログラム入門 Visual C++ / VISA ライブラリ編 Visual Studio Express 2012 for Windows Desktop を使用して作成する C++ プログラムからアジレント IO Libraries Suite に含まれている VISA ライブラリを呼び出すことにより 測定器を制御することが可能です

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

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

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

More information

5988_7689JA.qxd

5988_7689JA.qxd Agilent Application Note 1410 2 3 4 ω ω ω ω ω ω 5 6 7 8 9 10 11 12 13 E8267C PSG User's Guide 14 15 16 17 Ref-4 dbm Samp Log 10 db/ #Atten 6 db Mkr1-20.00 MHz -62.275 db LgAv 10 W1 S2 S3 FC Marker -20.000000

More information

5989-5384JAJP.qxd

5989-5384JAJP.qxd Agilent SPDR Application Note l SPDR 120 GHz SPDRPNA/PNA-L 85071E300 21 - SPDR- SPDR Q 23SPDR - - 2 SPDR 1 2 1 h 4 h G 4 1 Ll L l h L 1. ' r 210 GHzSPDR f ' r ' r 10 h G ' r 10 8.5 GHz2 3 h G l f 1 L L

More information

Keysight Technologies GPSレシーバ・テスト

Keysight Technologies GPSレシーバ・テスト Keysight Technologies GPS Application Note 25 37500 12.5 2 300 1 6 3 4 5 1500 30 (TLM) 30 0.6 8 16 6 16 7 (HOW) 30 0.6 TOW (Time of week) ID 6 ...3...3 GPS...4 GPS A-GPS...4 GPS...4 GPS...4 GPS...5 GPS...5

More information

1. 2. SRT100 3. QAC/TM 4. QAC/TM 5. QAC/TM 6. QAC/TM ( ) 7. [APPENDIX 1] [APPENDIX 2] QAC/TM Classification 2

1. 2. SRT100 3. QAC/TM 4. QAC/TM 5. QAC/TM 6. QAC/TM ( ) 7. [APPENDIX 1] [APPENDIX 2] QAC/TM Classification 2 SRT100 QAC/TM (Rev.10.00.49 ) 2010 1 Copyright (C) 2010 Trend Micro Incorporated. All rights reserved. TRENDMICRO 1. 2. SRT100 3. QAC/TM 4. QAC/TM 5. QAC/TM 6. QAC/TM ( ) 7. [APPENDIX 1] [APPENDIX 2] QAC/TM

More information

Microsoft Word - Intuilink Lite for Agilent CSA取説書Rev3.0.0.doc

Microsoft Word - Intuilink Lite for Agilent CSA取説書Rev3.0.0.doc Agilent IntuiLink Lite Software for Agilent CSA Spectrum Analyzer N1996A ユーザーズ ガイド Rev 3.0 2006.11.16 sa Application Engineering Organization Wireless Group 目 次 目 次...1 改 定 履 歴...2 1. ソフトウェア 概 要...3 1.1

More information

DCV ACV DCI ACI DCV ACV DCI ACI DCV ACV DCI ACI DCV ACV DCI ACI Excel JIS Microsoft Excel I-V START I-V Excel I-V JIS C-8913 Excel Excel I-V ISC Isc J

DCV ACV DCI ACI DCV ACV DCI ACI DCV ACV DCI ACI DCV ACV DCI ACI Excel JIS Microsoft Excel I-V START I-V Excel I-V JIS C-8913 Excel Excel I-V ISC Isc J Agilent Technologies B2900A Microsoft Excel I-V GP-IB Agilent SMU B2900A Series DC 6V/3.03A 21V/1.515A 210V/0.105A JIS 1 2 DARK I-V I-V DCV ACV DCI ACI DCV ACV DCI ACI DCV ACV DCI ACI DCV ACV DCI ACI Excel

More information

本機をお使いの方へ ~『活用ガイド ソフトウェア編』補足ガイド~

本機をお使いの方へ ~『活用ガイド ソフトウェア編』補足ガイド~ MA26D/F MA26H/F Windows 98 ESMPRO 9 1-2-3 98 è / PART1 / 1 Timer-NX OK ê Timer-NX(MA26D/F,MA26H/F Windows98) OK PC98-NX PC-9800 Intellisync 1.60 CD-ROM Intellisync BIOS Peripheral Setup IR Serial Port

More information

2 A4 0 A4 10.00mm 2 MS 72pt 25mm

2 A4 0 A4 10.00mm 2 MS 72pt 25mm Silhouette Studio Silhouette CAMEO 2 Silhouette Studio Silhouette CAMEO 2 Windows Silhouette Studio 1 2 A4 0 A4 10.00mm 2 MS 72pt 25mm MS 25mm MS 3 Silhouette Silhouette 2 1 2 Silhouette CAMEO 2 4 1 0

More information

Microsoft Word - idnVbVisaCom01.docx

Microsoft Word - idnVbVisaCom01.docx Vsual Basc 2010 Express Edton による 測定器制御プログラム入門 VISA COM ライブラリ編 Vsual Basc 2010 Express Edton からアジレント IO Lbrares Sute に含まれている VISA COM ライブラリを呼び出すことにより 測定器を制御することが可能です 本アプリケーション ノートでは 測定器にコマンドを送り 応答を受け取るという

More information

Oracle Lite Tutorial

Oracle Lite Tutorial GrapeCity -.NET with GrapeCity - InputMan Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 GrapeCity Microsoft Visual Studio.NET VB.NET Oracle Tips InputMan InputMan Oracle.NET Oracle

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

Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows

Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows Systemwalker IT Service Management Systemwalker Centric Manager IT Service

More information

Cisco Configuration Professional(CCP)Express による Cisco 841M J シリーズ初期設定ガイド

Cisco Configuration Professional(CCP)Express による Cisco 841M J シリーズ初期設定ガイド Cisco Configuration Professional CCP Express 3.5.1 Cisco 841M J WAN/LAN Cisco Configuration Professional CCP Express 3.5.1 p3 CCP Express 3.5.1 p4 Cisco Configuration Professional ExpressCCP Express 3.5.1

More information

5989_2423JAJP.qxd

5989_2423JAJP.qxd Agilent FPGA White Paper .......................................................... 2...................................................... 3 FPGA.................................... 4 FPGA.................................

More information

Keysight Technologies E4990Aインピーダンス・アナライザ

Keysight Technologies E4990Aインピーダンス・アナライザ Keysight Technologies E4990A 20 Hz 10/20/30/50/120 MHz Keysight mm5 Hz3 GHz 10 MHz 3 GHz E4990A 0.08 0.045 25 m 40 M10 120 050 030 020 010 20 Hz 120 MHz 20 Hz 50 MHz 20 Hz 30 MHz 20 Hz 20 MHz 20 Hz 10

More information

1 1 LAN LAN LAN LAN Pre Shared Key: LAN 1. UTP 10BASE-T/100BASE-TX MDI/MDI-X 2 AT-TQ

1 1 LAN LAN LAN LAN Pre Shared Key: LAN 1. UTP 10BASE-T/100BASE-TX MDI/MDI-X 2 AT-TQ 1... 2... 2... 2... 3 SSID... 4... 6... 7 IP... 11... 12 LAN Windows 7... 12 LAN Windows XP... 15 2 VWN VLAN... 20... 20 SSID... 21 VLAN... 22 VLAN ID SSID... 23... 25 3 MAC... 28 MAC... 28 LAN MAC...

More information

Microsoft Word JAJP_Microsoft Excel 2010 VBA によるシリアルデコードの取得_InfiniiVision編_ docx

Microsoft Word JAJP_Microsoft Excel 2010 VBA によるシリアルデコードの取得_InfiniiVision編_ docx Microsoft Excel 2010 VBA によるシリアルデコードの取得 (InfiniiVision 編 ) 内容 1. はじめに... 3 2. 制御プログラム作成の準備... 3 2.1. ソフトウェア環境... 3 2.2. ハードウェア環境... 4 2.3. 測定器の接続と VISA アドレスの確認... 4 3. 基本的なプログラムの作成... 6 3.1. 開発環境の設定...

More information

U-PHORIA UMC404HD/UMC204HD/UMC202HD/UMC22/UM2

U-PHORIA UMC404HD/UMC204HD/UMC202HD/UMC22/UM2 U-PHORIA UMC404HD Audiophile 4x4, 24-Bit/192 khz USB Audio/MIDI Interface with MIDAS Mic Preamplifiers UMC204HD Audiophile 2x4, 24-Bit/192 khz USB Audio/MIDI Interface with MIDAS Mic Preamplifiers UMC202HD

More information

(OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. Microsoft Windows Visual Basic Visual Studio Microsoft Corporation

(OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. Microsoft Windows Visual Basic Visual Studio Microsoft Corporation Microsoft Microsoft Visual Basic.NET (OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. Microsoft Windows Visual Basic Visual Studio Microsoft Corporation Microsoft Microsoft

More information

Keysight Technologies EXA Xシリーズ シグナル・アナライザ、マルチタッチ N9010B

Keysight Technologies EXA Xシリーズ シグナル・アナライザ、マルチタッチ N9010B Keysight Technologies EXA X N9010B Configuration Guide EXA EXA 02 Keysight N9010B EXA X - Configuration Guide Keysight EXA EXA X EXA 8 GB RAM 25 MHz 503/507/513/526 Windows Embedded Standard 7 40 MHz IQ

More information

JA.indd

JA.indd DCA-J Agilent 86100C Technical Specifications 2008 10 1 4 PatternLock 40 Gb/s TDR S Agilent 86100A/86100B/83480A/54750A 100 fs Windows XP Pro 3 4 5 6 /PLL 7 TDR/TDT/S 7 8 9 10 13 16 17 86100 18 19 21 23

More information

InterSafe Personal_v2.3 ユーザーズガイド_初版

InterSafe Personal_v2.3 ユーザーズガイド_初版 InterSafe Personal v2.3 1. 3 1-1. 4 1-2. 5 InterSafe Personal 5 1-3. InterSafe Personal 6 6 7 8 2. 9 2-1. 10 2-2. 14 2-3. 17 17 17 2 18 19 21 3. 22 3-1. 23 23 3-2. [ ] 24 [ ] 24 [ ] 24 3-3. [ ] 25 [ ]

More information

AES3/SPDIF DSI U8903A 113 AES3/ SPDIF DSI 114 115 U8903AI 2 S Left Justified Right Justified DSP DSI U8903A Agilent SSUU8903A Agilent IC MP3 IC U8903A

AES3/SPDIF DSI U8903A 113 AES3/ SPDIF DSI 114 115 U8903AI 2 S Left Justified Right Justified DSP DSI U8903A Agilent SSUU8903A Agilent IC MP3 IC U8903A Agilent U8903A Data Sheet U8903A U8903A SINAD AC DC FFT AES3/SPDIF Digital Serial Interface IC U8903A AES3/SPDIF DSI 1.2 V 3.3 V DSI DSI I 2 S Left Justified Right Justified DSP 1 DC 10 Hz 100 khz S/NSINAD

More information

困ったときのQ&A

困ったときのQ&A Q&A XP 1 2 3 Q&A Q&A Q&A Q&A Q&A Q&A Q&A Q&A Q&A Q&A Q&A Q&A LAN Q&A 5 8 9 13 14 15 17 19 20 23 24 27 28 Microsoft Windows XP Professional Service Pack 2 Microsoft Windows XP Professional Service Pack

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Ubiquitous Station Ver.2.00 StationManual_02C 2 StationManual_02C Part.1 3 StationManual_02C Ubiquitous Station Ubiquitous Station Ubiquitous Station CB-Link Prime Ubiquitous Station Cyber Conference System

More information

untitled

untitled Worldspan go! 4.x (UCI) Administrator Guide go! 4.x (UCI) Version 2.1.4 : 31 August 2007 1. WORLDSPAN GO! VERSION 4.X (UCI)... 3 2. WORLDSPAN GO! VERSION 4.X (UCI)... 4 3.... 6 4. WORLDSPAN GO! VERSION

More information

5989_3443JAJP.qxd

5989_3443JAJP.qxd Agilent Application Note 1509 2 3 Reduced Interface Spacing 4 C B r r 5 s H 6 SISO SIMO MISO MIMO C S B.log 2 (1 r s i = 1 to N N i2 (H)) s H H AA AA A 7 T 0 T1 0.8 0.2 0.3-0.9 R 0= 0.8T 0+ 0.3T1 R 1=

More information

untitled

untitled 1 2 ...1 ...1...3...4...4...4...5...7...10 3-1...10 3-2...10 3-3...11 3-4 Windows2000 / XP...11 3-5 PC...13...14 4-1 SYSTEM...14 4-2 DISPLAY...15...17...20...22...23...24...25...25...25...25...26...28

More information