updates of framework

- focus on AWG output power and lowpass characteristics
This commit is contained in:
Silas Oettinghaus
2024-04-26 14:08:21 +02:00
parent 0600abfcbf
commit 7c1d9850d6
25 changed files with 864 additions and 279 deletions

View File

@@ -1,8 +1,8 @@
classdef gain_mode < int32
enumeration
gain (1)
output_power (2)
gain (1)
output_power (2)
end
end

View File

@@ -3,6 +3,7 @@ classdef normalization_mode < int32
enumeration
rms (1)
oneone (2)
milliwatt (3)
end
end

View File

@@ -0,0 +1,10 @@
classdef power_notation < int32
enumeration
mW (1)
W (2)
dBW (3)
dBm (4)
end
end

View File

@@ -0,0 +1,8 @@
classdef upsampling_mode < int32
enumeration
resample (1)
samplehold (2)
end
end