Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/singond/importkeysightbin.jl
Read binary data from Keysight oscilloscopes.
https://github.com/singond/importkeysightbin.jl
julia physics
Last synced: about 1 month ago
JSON representation
Read binary data from Keysight oscilloscopes.
- Host: GitHub
- URL: https://github.com/singond/importkeysightbin.jl
- Owner: Singond
- License: mit
- Created: 2022-03-06T22:29:14.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-07-10T20:15:52.000Z (6 months ago)
- Last Synced: 2024-12-01T01:06:42.401Z (about 1 month ago)
- Topics: julia, physics
- Language: Julia
- Homepage:
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
ImportKeysightBin for Julia
===========================
Utility to import binary waveform data from Keysight (formerly Agilent)
oscilloscopes into Julia. This is equivalent to the `importAgilentBin`
function in Matlab and Python.Structure of the binary file format can be inferred from the example
reader function provided by Keysight at
.
Textual description is available at
,
but note that it is missing the frameString parameter.Installation
============
Install the package with `Pkg.add("ImportKeysightBin")`.Usage
=====
Call the `importkeysightbin` function to import data from a file or IO:
```julia
using ImportKeysightBin(x1, y1), (x2, y2), (x3, y3), (x4, y4), metadata = importkeysightbin("file.bin")
```