-
Introduction
.tfw
files are used to input wave-shape data to the oscilloscopes. The original python codes are from the web forum of Tektronix Python Read/Write AFG TFW, authored by Carl M.This package is just a julia version of these codes.
-
Usages
-
Writetfw(Target::String, DacValues::Vector{<:Integer}; EnvelopeFlag::Bool=true)
Use this function to write tfw files.
Target
should be something likeExample.tfw
.DacValues
should be a vector of integers, with minima as 0 and maxima as 16382. -
NormalVector(Values::Vector{<:Real})
This function helps you to convert a vector into the one which satisfies the requirements of
DacValues
. -
ExampleUsage(;File::String="Example.tfw")
Write a file named as
Example.tfw
.
-