{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "c0844259", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:49.239355Z", "iopub.status.busy": "2025-10-02T01:26:49.239180Z", "iopub.status.idle": "2025-10-02T01:26:49.242606Z", "shell.execute_reply": "2025-10-02T01:26:49.242107Z" }, "nbsphinx": "hidden" }, "outputs": [], "source": [ "# Copyright 2025 Keysight Technologies Inc." ] }, { "cell_type": "raw", "id": "a6b0adcf", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "Rabi Experiment\n", "===============\n", "\n", "\n", "This guide shows how to perform a Rabi experiment to calibrate a :math:`\\pi`-pulse\n", "using a program. This experiment can be easily generated using the\n", ":py:class:`~keysight.qcs.experiments.RabiExperiment`\\ class.\n", "\n", "The Rabi experiment is the second step in calibrating our first quantum gates.\n", "Following the :doc:`qubit_spec` experiment, we learned the energy gap between\n", "the ground state and first excited state of our two-level system. In other words, we\n", "have determined the resonance frequency of our qubit, and can now apply pulses at\n", "this frequency to alter the qubit's state.\n", "\n", "The state of the qubit can be visualized using the Bloch sphere. The ground state\n", ":math:`|0\\rangle` is represented by the north-pole, and the excited state\n", ":math:`|1\\rangle` is represented by the south-pole as shown. By applying pulses of\n", "varying strengths to a qubit in the ground state, we can drive a rotation around the\n", "Bloch sphere by some as-yet-unknown angles.\n", "\n", ".. image:: ../figures/rabi_osc.png\n", " :align: center\n", " :width: 120%\n", "\n", "A rotation of :math:`\\pi` takes us from :math:`|0\\rangle` to :math:`|1\\rangle`, which\n", "is the operation implemented by a Pauli-X gate. The pulse that drives this rotation\n", "is called a :math:`\\pi`-pulse. Here we assume that the pulse duration is fixed, and\n", "we will vary strength by varying pulse amplitude. Our goal is to learn the required\n", ":math:`\\pi`-pulse amplitude, in order to calibrate our gate.\n", "\n", "To learn the pulse amplitude, we perform a Rabi experiment as follows:\n", "\n", "#. Initialize the qubit to the ground state.\n", "\n", "#. Apply a control pulse with the resonance frequency :math:`\\omega_r` and\n", " amplitude :math:`A`, for a fixed duration, on the target qubit.\n", "\n", "#. Measure the population of the qubit in the excited state.\n", "\n", "#. Repeat the above steps with varying amplitude :math:`A`.\n", "\n", "The observed population as a function of amplitude will be a sinusoid, corresponding\n", "to rotations around the Bloch sphere. We can read off the :math:`\\pi`-pulse amplitude\n", "as half the period of the observed oscillation." ] }, { "cell_type": "code", "execution_count": 2, "id": "f27066e8", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:49.244309Z", "iopub.status.busy": "2025-10-02T01:26:49.244145Z", "iopub.status.idle": "2025-10-02T01:26:52.178696Z", "shell.execute_reply": "2025-10-02T01:26:52.177844Z" } }, "outputs": [], "source": [ "import keysight.qcs as qcs\n", "import numpy as np" ] }, { "cell_type": "raw", "id": "9613f70a", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "We start by initializing a qubit and defining an empty channel mapper to create a new\n", "instance of the :py:class:`~keysight.qcs.experiments.RabiExperiment` class. We load\n", "a ``make_calibration_set`` function that creates\n", "a calibration set for the given amount of qubit containing the linkers for the ``RX``\n", ", ``Z`` and measurement gates. Lastly, we import an experiment with simulated data\n", "to demonstrate the fitting and calibration workflow at the end of this file." ] }, { "cell_type": "code", "execution_count": 3, "id": "dca3bc84", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:52.181569Z", "iopub.status.busy": "2025-10-02T01:26:52.181215Z", "iopub.status.idle": "2025-10-02T01:26:52.218165Z", "shell.execute_reply": "2025-10-02T01:26:52.217422Z" } }, "outputs": [], "source": [ "from keysight.qcs.experiments import RabiExperiment, make_calibration_set\n", "from simulated_experiments.simulated_experiments import SimulatedRabiExperiment" ] }, { "cell_type": "code", "execution_count": 4, "id": "2630a193", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:52.220523Z", "iopub.status.busy": "2025-10-02T01:26:52.220327Z", "iopub.status.idle": "2025-10-02T01:26:52.612661Z", "shell.execute_reply": "2025-10-02T01:26:52.611975Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", "
\n", "
\n", " Program\n", "
\n", "
\n", " \n", " \n", "\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", " \n", "\tkeysight-logo-svg\n", "\t\n", "\t\n", "\t\t\n", "\t\n", "\n", "\n", " \n", "
\n", " Program Body\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Program\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Durationundefined
Layers2
Targets2
\n", "
\n", "\n", "
\n", "
\n", "
\n", "
\n", " Layer #0\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Layer #0 \n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Duration30 ns
\n", "
\n", "\n", "
\n", "
\n", "
\n", "
\n", " Layer #1\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Layer #1 \n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Durationundefined
\n", "
\n", "\n", "
\n", "
\n", "
\n", " xy_pulse\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('xy_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=x180_pulse_amplitudes, value=0.5, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=x_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=x_post_phase, value=0 rad, dtype=float, unit=rad)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " qudits\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Measure on ('qudits', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
Dim2
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": { "text/html": { "isolated": true } }, "output_type": "display_data" } ], "source": [ "# set the following to True when connected to hardware\n", "run_on_hw = False\n", "\n", "n_qubits = 1\n", "calibration_set = make_calibration_set(n_qubits)\n", "qubits = qcs.Qudits(range(n_qubits))\n", "\n", "# generate an empty channel mapper\n", "mapper = qcs.ChannelMapper(\"ip_addr\")\n", "\n", "# create Rabi experiment\n", "rabi_experiment = RabiExperiment(mapper, calibration_set=calibration_set, qubits=qubits)\n", "\n", "rabi_experiment.program.draw()\n", "\n", "# The program consists of a simple `RX` gate with variable amplitude followed by a\n", "# measurement. During execution, we set the amplitude of this gate to a range of values\n", "# from zero to one." ] }, { "cell_type": "code", "execution_count": 5, "id": "6ca7cc4a", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:52.614696Z", "iopub.status.busy": "2025-10-02T01:26:52.614509Z", "iopub.status.idle": "2025-10-02T01:26:52.649355Z", "shell.execute_reply": "2025-10-02T01:26:52.648740Z" } }, "outputs": [], "source": [ "# configure the repetitions for this experiment\n", "start_amplitude = 0\n", "end_amplitude = 1\n", "steps = 10\n", "scan_values = np.linspace(start_amplitude, end_amplitude, steps)\n", "rabi_experiment.configure_repetitions(amplitudes=scan_values, n_shots=1)" ] }, { "cell_type": "raw", "id": "0d6f600d", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "Compiling this program to the waveform level using the\n", ":py:class:`~keysight.qcs.programs.ParameterizedLinker`\\s in the calibration set\n", "results in the following program:" ] }, { "cell_type": "code", "execution_count": 6, "id": "937e9a4c", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:52.651970Z", "iopub.status.busy": "2025-10-02T01:26:52.651783Z", "iopub.status.idle": "2025-10-02T01:26:52.701540Z", "shell.execute_reply": "2025-10-02T01:26:52.700650Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", "
\n", "
\n", " Program\n", "
\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", "
\n", "
\n", " \n", " \n", "\n", "\n", "\n", "
\n", " Sweep Details:\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Repetitions\n", " Repeat with 1 repetitions\n", "
\n", "\n", "
\n", "
\n", "\n", "
\n", "\n", " \n", " (HW)Repeat(1)\n", " \n", "
\n", "\n", "
\n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", "
\n", "
\n", " \n", " \n", "\n", "\n", "\n", "
\n", " Sweep Details:\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Repetitions\n", " Sweep with 10 repetitions\n", "
\n", " Associations\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
x180_pulse_amplitudesArray(name=_implicit, shape=(10,), dtype=float, unit=none, value=[0, 0.1111, 0.2222, 0.3333, 0.4444, 0.5556, 0.6667, 0.7778, 0.8889, 1])
\n", "\n", "
\n", "
\n", "\n", "
\n", "\n", " \n", " (HW)Sweep_x180_pulse_amplitudes\n", " \n", "
\n", "\n", "
\n", " \n", "\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", " \n", "\tkeysight-logo-svg\n", "\t\n", "\t\n", "\t\t\n", "\t\n", "\n", "\n", " \n", "
\n", " Program Body\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Program\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Duration135 ns
Layers2
Targets3
\n", "
\n", "\n", "
\n", "
\n", "
\n", "
\n", " Layer #0\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Layer #0 \n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Duration30 ns
\n", "
\n", "\n", "
\n", "
\n", "
\n", "
\n", " Layer #1\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Layer #1 \n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Duration105 ns
\n", "
\n", "\n", "
\n", "
\n", "
\n", " xy_pulse\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('xy_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=x180_pulse_amplitudes, value=0.5, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=x_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=x_post_phase, value=0 rad, dtype=float, unit=rad)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " readout_pulse\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=readout_pulse_delay, value=0 s, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('readout_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=readout_pulse_duration, value=100 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=readout_pulse_amplitudes, value=0.1, dtype=float, unit=none)
FrequencyScalarRef(name=readout_frequencies, value=5.15 GHz, dtype=float, unit=Hz)
EnvelopeSineEnvelope()
Instantaneous PhaseScalarRef(name=readout_pulse_phases, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=measurement_post_phase, value=0 rad, dtype=float, unit=rad)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=5 ns, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " readout_acquisition\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_acquisition', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=acquisition_delay, value=5 ns, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Acquisition on ('readout_acquisition', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=acquisition_duration, value=100 ns, dtype=float, unit=s)
Integration Filter\n", " \n", " \n", "\n", "\n", "\n", "
\n", " RFWaveform \n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=acquisition_duration, value=100 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=measurement_integrator_amplitude, value=1, dtype=float, unit=none)
FrequencyScalarRef(name=readout_frequencies, value=5.15 GHz, dtype=float, unit=Hz)
EnvelopeConstantEnvelope()
Instantaneous PhaseScalarRef(name=measurement_integrator_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=measurement_integrator_post_phase, value=0 rad, dtype=float, unit=rad)
\n", "
\n", "\n", "
ClassifierClassifier(Array(name=references, shape=(1, 2), dtype=complex, unit=none))
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_acquisition', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=4.96308e-24 s, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", "\n", "\n", "
\n", "\n", "\n", "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": { "text/html": { "isolated": true } }, "output_type": "display_data" } ], "source": [ "rabi_experiment.compiled_program.draw()" ] }, { "cell_type": "raw", "id": "bbeef4a8", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "We again use the render method to visualize this with the\n", ":py:class:`~keysight.channels.ChannelMapper`\\." ] }, { "cell_type": "code", "execution_count": 7, "id": "9426abcf", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:52.703556Z", "iopub.status.busy": "2025-10-02T01:26:52.703312Z", "iopub.status.idle": "2025-10-02T01:26:54.769675Z", "shell.execute_reply": "2025-10-02T01:26:54.768827Z" } }, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "dx": 2e-10, "legendgroup": "xy_pulse, labels: (0,)", "legendgrouptitle": { "text": "xy_pulse, labels: (0,)" }, "name": "Drive pulse for xy_pulse, labels: (0,)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 1.5419764230904953e-17, 0.0047256763520764555, 0.009412400532923353, 0.013822420400883802, 0.01771194228092286, 0.02083790923841042, 0.02296515049149169, 0.023873734880112723, 0.02336634574603679, 0.0212754828795148, 0.01747028993638514, 0.011862803421272217, 0.004413422359540562, -0.004864593590873788, -0.015901775482102375, -0.028570403718064925, -0.042683906291113544, -0.05799779822853877, -0.0742122285889621, -0.09097616218428085, -0.10789318100976762, -0.12452884614426686, -0.1404195157544655, -0.155082470015187, -0.1680271505170042, -0.17876728137621467, -0.18683360308353952, -0.19178691937062564, -0.19323113319198018, -0.19082593133969186, -0.18429876908770523, -0.17345580725851925, -0.15819146464328396, -0.1384962689554063, -0.11446271935288983, -0.08628891263640757, -0.054279732843120584, -0.018845459156023075, 0.019502291382451534, 0.060157303381376384, 0.1024281321300743, 0.14554997827303487, 0.18869887360438273, 0.2310079153110514, 0.2715852223653304, 0.30953323060367083, 0.34396889416198206, 0.3740443220248525, 0.39896735091239566, 0.4180215407169654, 0.43058507703048776, 0.4361480774290761, 0.4343278241773943, 0.4248814855549704, 0.4077159403643339, 0.3828943842412672, 0.3506394706692853, 0.31133282229127845, 0.26551083711366513, 0.21385680718605773, 0.15718946182134957, 0.09644814081245896, 0.03267489279918251, -0.033006122603400294, -0.09941147549469927, -0.16532303181747768, -0.22951367636109324, -0.29077358724626756, -0.3479364352218394, -0.3999048761420425, -0.44567471665099023, -0.4843571612127808, -0.5151985925533942, -0.537597396230761, -0.5511174119016866, -0.5554976770039768, -0.5506582207845041, -0.5367017653793025, -0.5139112932982403, -0.4827435443796327, -0.44381860722421906, -0.3979058675114529, -0.34590666579733187, -0.2888340979580419, -0.22779046022700813, -0.16394289596947548, -0.0984978415398456, -0.03267489279918281, 0.03231927837970178, 0.09531633706645974, 0.15521043200655033, 0.210980520549624, 0.26171037021350796, 0.3066058016076692, 0.34500881399082545, 0.37640831930643054, 0.4004473006897815, 0.41692630462065056, 0.42580326951785, 0.4271897850885743, 0.4213439637202421, 0.4086601853819699, 0.3896560488760218, 0.36495692313196587, 0.33527854119198336, 0.30140811558908887, 0.26418447635485426, 0.2244777416902132, 0.18316902656451556, 0.1411306767218131, 0.09920748566480181, 0.058199311362150334, 0.018845459156023554, -0.018188860680516467, -0.05232375622799566, -0.08307338145168384, -0.11005206128698732, -0.1329777775170695, -0.15167304675224152, -0.16606328627387928, -0.17617282275368512, -0.18211875152640664, -0.18410289904686122, -0.18240217753042418, -0.17735764796736497, -0.16936262540448335, -0.15885016856884654, -0.14628029479975369, -0.13212725133390532, -0.11686715595274944, -0.10096629473677844, -0.08487033321997954, -0.06899466075585865, -0.05371604762900011, -0.039365751645509275, -0.026224166884348064, -0.01451706322572621, -0.0044134223595407255, 0.003975164714489207, 0.0105936112060605, 0.01544106513291642, 0.018567391984572336, 0.020068568253969465, 0.020081163030632506, 0.01877609766107827, 0.0163518807227825, 0.013027517382414106, 0.009035288907022404, 0.0046135900753215215, 1.529817478428401e-17, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "yaxis": "y" }, { "dx": 2e-10, "legendgroup": "readout_pulse, labels: (0,)", "legendgrouptitle": { "text": "readout_pulse, labels: (0,)" }, "name": "Drive pulse for readout_pulse, labels: (0,)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0006184220489915605, 0.0011707021212987367, 0.0015946152527867967, 0.0018355754954468737, 0.0018499768300673266, 0.0016079843711501872, 0.0010956324887514055, 0.000316118387868392, -0.0007097831195522616, -0.0019442170727048693, -0.0033336487793465147, -0.0048111152629688346, -0.0062992350810828004, -0.007713846879926283, -0.008968115500920717, -0.009976919780816168, -0.010661319555279433, -0.010952891611674368, -0.010797725892474052, -0.01015988417988391, -0.009024143445072196, -0.007397874279727853, -0.005311940236580883, -0.00282054506052735, -1.8707399334738554e-17, 0.003053569239927346, 0.006227508813318682, 0.009396803588072787, 0.012428970049811142, 0.015189484745681115, 0.017547529125163892, 0.01938181174762346, 0.020586218699670075, 0.02107504332083633, 0.02078755717056758, 0.019691705341405488, 0.017786740055666665, 0.015104645885437725, 0.011710256442985015, 0.007700014215083649, 0.003199380322805601, -0.001641042831780563, -0.006650558113024048, -0.011644420025519825, -0.01643066579190175, -0.020817477944772858, -0.024620796580435905, -0.027671881531907448, -0.029824518557162498, -0.030961569705403112, -0.031000586334808972, -0.029898233332149624, -0.027653313968204096, -0.024308235101883853, -0.01994881030628735, -0.014702361780592497, -0.008734148224767901, -0.0022422126162342103, 0.0045491916003690515, 0.011397377618744266, 0.01804993485156204, 0.024254057107995525, 0.029766143789349848, 0.0343613096544684, 0.037842433664772815, 0.040048386676744714, 0.04086110122787556, 0.040211183723524696, 0.03808181879789631, 0.03451077580906686, 0.029590396205160973, 0.023465515364528358, 0.016329350685246668, 0.00841746622014543, 1.2624116582993913e-16, -0.008627589611650438, -0.017154940437327616, -0.025267997007120468, -0.03266060855615846, -0.03904608511268965, -0.044168275366041225, -0.04781173955533855, -0.04981061656974434, -0.05005582609173375, -0.04850030262806724, -0.045162026770503495, -0.040124697615857845, -0.03353597613685022, -0.0256033192948609, -0.016587515481204955, -0.006794120041600043, 0.0034369281962215613, 0.013743155507775216, 0.023752452220778274, 0.033096560994787035, 0.04142466366369044, 0.04841656405855036, 0.053794971048311074, 0.05733641151281112, 0.058880346415940345, 0.05833612321013595, 0.05568747246648303, 0.05099434330096754, 0.044391967784094, 0.03608714562839458, 0.026351843344648726, 0.015514302925238978, 0.003947950160278431, -0.007941521704165028, -0.019730444412815167, -0.030992337498398883, -0.041313396449418865, -0.05030774171175576, -0.05763186507883862, -0.06299773198694826, -0.06618404051167029, -0.0670451991427781, -0.06551766365939699, -0.061623365941829995, -0.055470071085792, -0.047248610027138205, -0.03722704902481927, -0.025741970603311452, -0.013187148725752188, -3.302379676703565e-16, 0.013353721149483765, 0.026396445505069744, 0.03865594151407751, 0.049682478569876835, 0.05906537505298885, 0.06644832053272057, 0.07154289958171763, 0.07413980413199237, 0.07411730023476229, 0.07144661077344949, 0.06619398477039683, 0.05851934254725371, 0.04867150988194452, 0.036980178952358056, 0.023844854698416035, 0.009721157797426898, -0.004895044476639078, -0.01948512443942503, -0.03352617785742382, -0.046509843849290085, -0.05796078071232167, -0.06745412375344888, -0.07463128206406759, -0.07921348578962897, -0.0810125720144249, -0.07993859329523313, -0.07600394478908637, -0.0693238298711918, -0.06011301569654013, -0.04867896457657204, -0.03541155943189506, -0.02076976709127301, -0.005265697198477098, 0.010553387288883526, 0.026124473276440647, 0.04088892340106104, 0.05431260206679295, 0.06590527363477733, 0.07523856569831686, 0.08196183718144223, 0.08581536214519316, 0.08664033324763744, 0.08438530054177901, 0.07910878776679665, 0.07097796498556748, 0.060263398435750994, 0.04733004065800881, 0.03262476116934156, 0.01666084513805799, 5.768638456105578e-16, -0.01676749644841643, -0.03304380175424696, -0.04824491752014311, -0.061821731222834755, -0.0732799299246072, -0.08219806099710701, -0.08824307778931467, -0.09118279532887384, -0.09089478961543736, -0.08737140002179661, -0.08072063328249407, -0.07116291454335641, -0.05902378067469313, -0.04472275809579322, -0.02875880637002502, -0.011692834725962354, 0.005872093188945643, 0.023312164615443078, 0.040005069927817855, 0.05535230460389715, 0.06880071829697586, 0.0798625319813921, 0.08813309601061457, 0.09330574030591866, 0.09518317005438995, 0.09368498263208193, 0.08885101963000948, 0.0808404169044612, 0.06992637014247013, 0.05648678795151901, 0.0409911533547331, 0.023984052389063454, 0.006065950236821702, -0.012128103490664925, -0.029951081785204614, -0.046767091281763394, -0.06197415824732545, -0.0750258695739743, -0.0854510875720501, -0.09287102441166684, -0.0970130550812116, -0.09772076342801359, -0.0949598500968293, -0.0888196791806927, -0.07951039683019302, -0.06735571429688461, -0.05278160416493726, -0.036301306196473176, -0.01849717292348246, -8.172962752145986e-16, 0.01853342180885654, 0.03644373064563053, 0.0530925545545429, 0.06788536392224435, 0.0802927938109023, 0.08986966826045259, 0.09627104003701237, 0.0992646655774666, 0.0987394622254111, 0.09470963870221327, 0.08731434493673401, 0.07681284829930952, 0.06357540414638185, 0.048070143573669115, 0.03084644479601896, 0.012515381428452734, -0.00627205345933745, -0.024848168133372876, -0.04255240595329199, -0.058754937652707014, -0.0728791658904024, -0.08442233449659506, -0.09297350261546138, -0.09822823838915261, -0.09999950454033102, -0.0982243449483568, -0.09296613214830837, -0.08441229517136581, -0.07286760953575873, -0.05874329063062406, -0.04254228245921641, -0.024841270287096, -0.006270063251794574, 0.012510912799690637, 0.03083420445937363, 0.04804915569948232, 0.06354511448825714, 0.07677318978634091, 0.08726578035824409, 0.09465317754140375, 0.09867664986844861, 0.09919754439935699, 0.09620208318932882, 0.08980168829990057, 0.08022882955281355, 0.067828550022585, 0.053045979265755085, 0.036410287910436184, 0.018515664315858296, 1.0192301299325297e-15, -0.018477948364666822, -0.03626209925533521, -0.052722444084044515, -0.06727746440407137, -0.07941476738153656, -0.08870920403531339, -0.09483782673643178, -0.09759115740271965, -0.09688037153026165, -0.09274015080638072, -0.08532711319395898, -0.07491388841244301, -0.061879062924322534, -0.04669336624197555, -0.029902604293944708, -0.012107960939327315, 0.006055618614394875, 0.02394218202833205, 0.04091784280565118, 0.05638334431685656, 0.06979530816297544, 0.08068541011905146, 0.08867680392628613, 0.09349721442836785, 0.09498824324219016, 0.09311056785413227, 0.08794486371589326, 0.07968843317471523, 0.06864767932564264, 0.05522671155299117, 0.03991250729159111, 0.02325717645796653, 0.005857976741954714, -0.011664194078048255, -0.028687051142242632, -0.044609119921289964, -0.058871082795354315, -0.070975513853547, -0.08050430250153844, -0.08713315289704288, -0.09064265432569174, -0.09092554337811339, -0.08798991756738228, -0.08195830675946164, -0.0730626581396499, -0.06163543699877426, -0.04809718411547046, -0.032940995975838265, -0.01671450204688405, -1.115473916535099e-15, 0.01660652784872091, 0.0325167576706562, 0.04717095924985732, 0.060057774871733687, 0.07073213995239415, 0.07883071462000833, 0.08408428899533807, 0.08632673723832542, 0.08550022235399644, 0.08165649060270111, 0.07495423612476504, 0.06565265790918176, 0.054101467392920585, 0.040727730882098856, 0.026020042152767524, 0.010510613095780144, -0.005244059101201251, -0.020683243393726854, -0.035262019539782904, -0.048470596357812, -0.059852215688295185, -0.06901901049092697, -0.07566526421447015, -0.07957761663850932, -0.08064187510411687, -0.07884621518152883, -0.07428068674249239, -0.06713307527708173, -0.05768129925031143, -0.046282647608090866, -0.033360272805852006, -0.01938745001136958, -0.004870189104423027, 0.009671159831413454, 0.02372063642817609, 0.03678505843331769, 0.048411410386095595, 0.05820261675414378, 0.06583114800702018, 0.07104999176514691, 0.0737006209721086, 0.07371770321570971, 0.07113041567210285, 0.06606035421207408, 0.0587161484397355, 0.04938501235543538, 0.03842156870730369, 0.02623438006984957, 0.01327069794079205, 1.00596319209843e-15, -0.013103076815978816, -0.025575784746951283, -0.03698368024462975, -0.04693582074474752, -0.0550982092783953, -0.061205022833882454, -0.06506724627152878, -0.06657843225033434, -0.06571741529850825, -0.06254792081093065, -0.05721512320945504, -0.04993931759749804, -0.041006971989790926, -0.030759518927947933, -0.019580322776285755, -0.007880319564921544, 0.0039171321034252565, 0.015391629132260483, 0.026140770358453042, 0.03579433051327781, 0.04402706024470269, 0.05056966789083427, 0.05521761134375676, 0.05783741360286688, 0.058370310181952975, 0.05683313679802647, 0.05331646796163616, 0.04798011741534613, 0.041046206155466045, 0.03279008960214256, 0.023529509312497674, 0.013612393904674154, 0.003403776596394967, -0.0067276783798323175, -0.01642304189848094, -0.025345892182194525, -0.03319403667822724, -0.03970977340435818, -0.04468834233183895, -0.047984290042276306, -0.04951555261271104, -0.04926514926532192, -0.04728046941019931, -0.043670224913073624, -0.03859922442110662, -0.032281204273327806, -0.024970018124443816, -0.016949542560088023, -0.008522696821582252, -7.356264748288547e-16, 0.00831190197833253, 0.016121314626344283, 0.023161776630783643, 0.02920118102302959, 0.03404942248382009, 0.037564319002128845, 0.039655625913767416, 0.04028703564302153, 0.03947613430860271, 0.03729236373467143, 0.033853111398559135, 0.02931811869854341, 0.023882457169092024, 0.017768370811000567, 0.01121631889007836, 0.004475576243642087, -0.0022052432888656623, -0.008587380280596314, -0.01445049920298164, -0.019600325123299768, -0.023875081846983996, -0.027150518117687622, -0.029343367941986182, -0.030413155184165118, -0.030362318695511904, -0.029234699785400386, -0.02711249626229832, -0.024111844194816535, -0.0203772378487357, -0.016075038166702096, -0.011386349296940938, -0.00649956012034141, -0.0016028530257125282, 0.00312302461558615, 0.0075114491988428, 0.011415821758110617, 0.014714471058357683, 0.01731439470212876, 0.01915372525002363, 0.02020286288967174, 0.020464271782161623, 0.019970991594519906, 0.018783966708031678, 0.016988341167704417, 0.014688905855840595, 0.012004914202634928, 0.009064502934696567, 0.005998964267196187, 0.0029371153589716264, 2.678027478550436e-16, -0.0027038629650541885, -0.005082499019387292, -0.007063615955316526, -0.008596753047546939, -0.009654379501370939, -0.010231927448979184, -0.010346791626430077, -0.010036372402754151, -0.009355279185941158, -0.008371845733835774, -0.00716413615531572, -0.005815639326815761, -0.00441085936565854, -0.0030310103815533824, -0.0017500150600486541, -0.0006309892008807105, 0.0002766310040434876, 0.0009391942251448046, 0.0013400843608200928, 0.0014800694640448187, 0.0013767452869666368, 0.0010631119505164122, 0.0005853626615642461, -1.4824771759728625e-17, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "yaxis": "y" }, { "dx": 2e-10, "legendgroup": "readout_acquisition, labels: (0,)", "legendgrouptitle": { "text": "readout_acquisition, labels: (0,)" }, "name": "Integration filter for readout_acquisition, labels: (0,)", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.9822872507286887, 0.9297764858882517, 0.8443279255020157, 0.7289686274214127, 0.5877852522924748, 0.4257792915650749, 0.2486898871648576, 0.06279051952931672, -0.12533323356430048, -0.30901699437494334, -0.48175367410171105, -0.6374239897486855, -0.7705132427757853, -0.8763066800438601, -0.9510565162951509, -0.9921147013144762, -0.9980267284282712, -0.9685831611286322, -0.9048270524660222, -0.8090169943749517, -0.6845471059286945, -0.535826794979004, -0.36812455268468663, -0.18738131458573443, -1.0602629885170245e-14, 0.1873813145857136, 0.36812455268466693, 0.535826794978986, 0.684547105928679, 0.809016994374939, 0.9048270524660128, 0.9685831611286265, 0.9980267284282693, 0.9921147013144782, 0.9510565162951566, 0.8763066800438695, 0.7705132427757979, 0.637423989748701, 0.48175367410172887, 0.3090169943749629, 0.12533323356432113, -0.06279051952929562, -0.24868988716483678, -0.42577929156505506, -0.5877852522924566, -0.7289686274213968, -0.8443279255020028, -0.929776485888242, -0.9822872507286827, -0.9999999999999979, -0.9822872507286906, -0.9297764858882575, -0.8443279255020252, -0.7289686274214255, -0.5877852522924906, -0.425779291565093, -0.24868988716487742, -0.06279051952933756, 0.12533323356427933, 0.3090169943749227, 0.48175367410169156, 0.637423989748668, 0.7705132427757703, 0.8763066800438483, 0.9510565162951424, 0.9921147013144715, 0.9980267284282704, 0.9685831611286354, 0.9048270524660291, 0.8090169943749621, 0.6845471059287082, 0.5358267949790203, 0.3681245526847052, 0.18738131458575447, 3.144706717250756e-14, -0.18738131458569265, -0.3681245526846466, -0.535826794978967, -0.684547105928662, -0.8090169943749247, -0.9048270524660017, -0.968583161128619, -0.9980267284282657, -0.9921147013144785, -0.951056516295161, -0.8763066800438777, -0.7705132427758097, -0.637423989748716, -0.4817536741017464, -0.3090169943749824, -0.12533323356434192, 0.06279051952927431, 0.24868988716481571, 0.42577929156503497, 0.5877852522924383, 0.7289686274213808, 0.8443279255019897, 0.9297764858882323, 0.9822872507286766, 0.9999999999999957, 0.9822872507286924, 0.9297764858882631, 0.8443279255020346, 0.7289686274214383, 0.5877852522925063, 0.4257792915651112, 0.24868988716489737, 0.06279051952935855, -0.12533323356425807, -0.3090169943749019, -0.481753674101672, -0.6374239897486503, -0.7705132427757552, -0.8763066800438362, -0.9510565162951339, -0.9921147013144668, -0.9980267284282697, -0.9685831611286386, -0.9048270524660363, -0.8090169943749731, -0.6845471059287224, -0.5358267949790374, -0.3681245526847244, -0.18738131458577517, -5.290212712338871e-14, 0.18738131458567123, 0.36812455268462596, 0.5358267949789479, 0.684547105928645, 0.8090169943749105, 0.9048270524659907, 0.9685831611286115, 0.9980267284282621, 0.992114701314479, 0.9510565162951655, 0.876306680043886, 0.7705132427758214, 0.6374239897487308, 0.48175367410176384, 0.30901699437500185, 0.12533323356436268, -0.062790519529253, -0.24868988716479462, -0.4257792915650148, -0.5877852522924197, -0.7289686274213646, -0.8443279255019763, -0.9297764858882224, -0.9822872507286705, -0.9999999999999934, -0.9822872507286942, -0.9297764858882689, -0.844327925502044, -0.7289686274214512, -0.5877852522925222, -0.42577929156512945, -0.2486898871649174, -0.06279051952937964, 0.12533323356423667, 0.30901699437488095, 0.48175367410165226, 0.6374239897486325, 0.77051324277574, 0.8763066800438241, 0.9510565162951253, 0.992114701314462, 0.9980267284282689, 0.9685831611286418, 0.9048270524660434, 0.8090169943749839, 0.6845471059287365, 0.5358267949790542, 0.3681245526847433, 0.18738131458579557, 7.405187574249794e-14, -0.18738131458565008, -0.36812455268460553, -0.535826794978929, -0.6845471059286283, -0.8090169943748966, -0.90482705246598, -0.9685831611286045, -0.998026728428259, -0.9921147013144799, -0.9510565162951703, -0.8763066800438946, -0.7705132427758336, -0.6374239897487459, -0.4817536741017815, -0.3090169943750214, -0.12533323356438342, 0.06279051952923177, 0.24868988716477364, 0.42577929156499483, 0.5877852522924015, 0.7289686274213487, 0.8443279255019634, 0.9297764858882128, 0.9822872507286646, 0.9999999999999916, 0.9822872507286963, 0.9297764858882749, 0.8443279255020537, 0.7289686274214642, 0.587785252292538, 0.4257792915651476, 0.24868988716493726, 0.06279051952940048, -0.12533323356421555, -0.3090169943748603, -0.48175367410163283, -0.6374239897486149, -0.7705132427757249, -0.876306680043812, -0.9510565162951167, -0.9921147013144572, -0.9980267284282681, -0.9685831611286451, -0.9048270524660506, -0.8090169943749945, -0.6845471059287503, -0.5358267949790708, -0.3681245526847622, -0.18738131458581592, -9.514611321037592e-14, 0.18738131458562898, 0.3681245526845852, 0.5358267949789102, 0.6845471059286116, 0.8090169943748825, 0.9048270524659692, 0.9685831611285973, 0.9980267284282557, 0.9921147013144805, 0.951056516295175, 0.876306680043903, 0.7705132427758455, 0.637423989748761, 0.4817536741017991, 0.30901699437504093, 0.12533323356440415, -0.06279051952921055, -0.24868988716475265, -0.42577929156497485, -0.5877852522923832, -0.7289686274213326, -0.8443279255019501, -0.9297764858882029, -0.9822872507286585, -0.9999999999999893, -0.982287250728698, -0.9297764858882805, -0.8443279255020633, -0.7289686274214772, -0.587785252292554, -0.42577929156516586, -0.24868988716495719, -0.06279051952942136, 0.12533323356419446, 0.30901699437483976, 0.48175367410161357, 0.6374239897485976, 0.77051324277571, 0.8763066800438002, 0.9510565162951085, 0.9921147013144527, 0.9980267284282673, 0.9685831611286483, 0.9048270524660575, 0.8090169943750052, 0.6845471059287642, 0.5358267949790874, 0.36812455268478084, 0.18738131458583607, 1.160460616489445e-13, -0.18738131458560806, -0.368124552684565, -0.5358267949788913, -0.6845471059285948, -0.8090169943748684, -0.9048270524659583, -0.96858316112859, -0.9980267284282521, -0.992114701314481, -0.9510565162951793, -0.8763066800439112, -0.7705132427758572, -0.6374239897487757, -0.48175367410181635, -0.3090169943750601, -0.12533323356442455, 0.06279051952918965, 0.248689887164732, 0.4257792915649552, 0.5877852522923652, 0.7289686274213171, 0.8443279255019376, 0.9297764858881937, 0.982287250728653, 0.9999999999999877, 0.9822872507287004, 0.9297764858882868, 0.8443279255020731, 0.7289686274214903, 0.58778525229257, 0.4257792915651842, 0.2486898871649771, 0.06279051952944226, -0.12533323356417336, -0.30901699437481916, -0.4817536741015942, -0.6374239897485802, -0.7705132427756952, -0.8763066800437886, -0.9510565162951005, -0.9921147013144486, -0.9980267284282673, -0.9685831611286523, -0.9048270524660654, -0.8090169943750166, -0.6845471059287788, -0.5358267949791046, -0.3681245526848, -0.18738131458585652, -1.3711254354120683e-13, 0.18738131458558718, 0.368124552684545, 0.535826794978873, 0.6845471059285787, 0.8090169943748551, 0.9048270524659483, 0.9685831611285836, 0.9980267284282496, 0.9921147013144823, 0.9510565162951846, 0.8763066800439202, 0.7705132427758695, 0.637423989748791, 0.4817536741018341, 0.3090169943750797, 0.12533323356444526, -0.06279051952916859, -0.24868988716471133, -0.42577929156493566, -0.5877852522923476, -0.7289686274213019, -0.8443279255019253, -0.9297764858881847, -0.9822872507286478, -0.9999999999999862, -0.9822872507287028, -0.9297764858882931, -0.844327925502083, -0.7289686274215035, -0.5877852522925859, -0.4257792915652024, -0.24868988716499693, -0.06279051952946296, 0.1253332335641525, 0.30901699437479885, 0.4817536741015752, 0.6374239897485632, 0.7705132427756808, 0.8763066800437771, 0.9510565162950924, 0.9921147013144441, 0.9980267284282667, 0.9685831611286555, 0.9048270524660724, 0.809016994375027, 0.6845471059287923, 0.5358267949791207, 0.36812455268481825, 0.18738131458587623, 1.5754064719430971e-13, -0.18738131458556673, -0.36812455268452526, -0.5358267949788547, -0.6845471059285625, -0.8090169943748415, -0.9048270524659379, -0.9685831611285767, -0.9980267284282464, -0.992114701314483, -0.9510565162951892, -0.8763066800439284, -0.7705132427758812, -0.6374239897488057, -0.4817536741018512, -0.3090169943750986, -0.1253332335644654, 0.06279051952914791, 0.24868988716469087, 0.4257792915649161, 0.5877852522923296, 0.7289686274212861, 0.8443279255019125, 0.9297764858881753, 0.9822872507286419, 0.9999999999999842, 0.9822872507287048, 0.929776485888299, 0.8443279255020926, 0.7289686274215164, 0.5877852522926017, 0.42577929156522054, 0.2486898871650168, 0.06279051952948381, -0.12533323356413142, -0.30901699437477836, -0.481753674101556, -0.6374239897485459, -0.7705132427756661, -0.8763066800437656, -0.9510565162950844, -0.99211470131444, -0.9980267284282666, -0.9685831611286594, -0.9048270524660801, -0.8090169943750383, -0.6845471059288069, -0.535826794979138, -0.3681245526848376, -0.18738131458589702, -1.790234627208065e-13, 0.1873813145855453, 0.3681245526845047, 0.5358267949788357, 0.6845471059285457, 0.8090169943748277, 0.9048270524659273, 0.9685831611285699, 0.9980267284282437, 0.9921147013144843, 0.9510565162951944, 0.8763066800439374, 0.7705132427758936, 0.6374239897488211, 0.48175367410186914, 0.3090169943751184, 0.12533323356448636, -0.06279051952912658, -0.2486898871646699, -0.42577929156489625, -0.5877852522923115, -0.7289686274212706, -0.8443279255018998, -0.9297764858881661, -0.9822872507286364, -0.9999999999999828, -0.9822872507287074, -0.9297764858883054, -0.8443279255021028, -0.7289686274215298, -0.587785252292618, -0.4257792915652391, -0.24868988716503693, -0.06279051952950482, 0.12533323356411025, 0.30901699437475777, 0.48175367410153674, 0.6374239897485287, 0.7705132427756514, 0.876306680043754, 0.9510565162950763, 0.9921147013144357, 0.9980267284282662, 0.9685831611286629, 0.9048270524660875, 0.8090169943750494, 0.6845471059288211, 0.5358267949791549, 0.36812455268485655, 0.18738131458591734, 2.000621890374532e-13, -0.1873813145855243, -0.36812455268448446, -0.5358267949788169, -0.6845471059285291, -0.8090169943748138, -0.9048270524659167, -0.9685831611285628, -0.9980267284282405, -0.9921147013144852, -0.9510565162951993, -0.8763066800439461, -0.7705132427759058, -0.6374239897488363, -0.48175367410188674, -0.30901699437513785, -0.12533323356450696, 0.06279051952910551, 0.24868988716464915, 0.4257792915648766, 0.5877852522922936, 0.728968627421255, 0.8443279255018872, 0.9297764858881568, 0.9822872507286308 ], "yaxis": "y" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "Waveforms", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "height": 500, "template": { "data": { "bar": [ { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" } ], "scatter": [ { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" } ], "violin": [ { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" } ] }, "layout": { "annotationdefaults": { "font": { "size": 12 } }, "autotypenumbers": "strict", "hoverlabel": { "bgcolor": "white", "font": { "family": "Rockwell", "size": 14 } }, "hovermode": "x unified", "legend": { "bgcolor": "white", "bordercolor": "Black", "borderwidth": 1, "font": { "family": "Rockwell" } }, "xaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true }, "yaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true } } }, "width": 900, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "showticklabels": true, "title": { "text": "Time (s)" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "Fractional Voltage" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "rabi_experiment.compiled_program.render(\n", " channel_subplots=False,\n", " lo_frequency=5e9,\n", " sweep_index=5,\n", " sample_rate=5e9,\n", ")" ] }, { "cell_type": "raw", "id": "8f17b3a1", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "To execute this experiment, we can simply run" ] }, { "cell_type": "code", "execution_count": 8, "id": "c80a3823", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:54.787577Z", "iopub.status.busy": "2025-10-02T01:26:54.787335Z", "iopub.status.idle": "2025-10-02T01:26:54.855131Z", "shell.execute_reply": "2025-10-02T01:26:54.854435Z" } }, "outputs": [], "source": [ "if run_on_hw:\n", " rabi_experiment.execute()\n", "else:\n", " # load in a previously executed version of this experiment\n", " rabi_experiment = qcs.load(\"RabiExperiment.qcs\")" ] }, { "cell_type": "raw", "id": "06773d94", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "For the purposes of this demonstration, we added a second \"ancilla\" qubit to the\n", "Rabi program and connected the physical output channels for our qubit control to\n", "the digitizer associated with the ancilla to allow us to capture both the control\n", "and the readout pulse." ] }, { "cell_type": "code", "execution_count": 9, "id": "5412f7f5", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:54.860724Z", "iopub.status.busy": "2025-10-02T01:26:54.860485Z", "iopub.status.idle": "2025-10-02T01:26:54.875561Z", "shell.execute_reply": "2025-10-02T01:26:54.874865Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", "
\n", "
\n", " RabiExperiment\n", "
\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", "
\n", "
\n", " \n", " \n", "\n", "\n", "\n", "
\n", " Sweep Details:\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Repetitions\n", " Sweep with 10 repetitions\n", "
\n", " Associations\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
x180_pulse_amplitudesArray(name=_implicit, shape=(10,), dtype=float, unit=none, value=[0, 0.1111, 0.2222, 0.3333, 0.4444, 0.5556, 0.6667, 0.7778, 0.8889, 1])
\n", "\n", "
\n", "
\n", "\n", "
\n", "\n", " \n", " (SW)Sweep_x180_pulse_amplitudes\n", " \n", "
\n", "\n", "
\n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", "
\n", "
\n", " \n", " \n", "\n", "\n", "\n", "
\n", " Sweep Details:\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Repetitions\n", " Repeat with 1 repetitions\n", "
\n", "\n", "
\n", "
\n", "\n", "
\n", "\n", " \n", " (HW)Repeat(1)\n", " \n", "
\n", "\n", "
\n", " \n", "\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", " \n", "\tkeysight-logo-svg\n", "\t\n", "\t\n", "\t\t\n", "\t\n", "\n", "\n", " \n", "
\n", " Program Body\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " RabiExperiment\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Durationundefined
Layers2
Targets3
\n", "
\n", "\n", "
\n", "
\n", "
\n", "
\n", " Layer #0\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Layer #0 \n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Duration30 ns
\n", "
\n", "\n", "
\n", "
\n", "
\n", "
\n", " Layer #1\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Layer #1 \n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Durationundefined
\n", "
\n", "\n", "
\n", "
\n", "
\n", " xy_pulse\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('xy_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=x180_pulse_amplitudes, value=0.5, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=x_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=x_post_phase, value=0 rad, dtype=float, unit=rad)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " qudits\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Measure on ('qudits', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
Dim2
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " ancilla\n", " \n", " 1\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Measure on ('ancilla', 1)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
Dim2
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", "\n", "\n", "
\n", "\n", "\n", "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": { "text/html": { "isolated": true } }, "output_type": "display_data" } ], "source": [ "rabi_experiment.draw()" ] }, { "cell_type": "code", "execution_count": 10, "id": "c6992ea0", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:54.877820Z", "iopub.status.busy": "2025-10-02T01:26:54.877646Z", "iopub.status.idle": "2025-10-02T01:26:54.902972Z", "shell.execute_reply": "2025-10-02T01:26:54.902343Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", "
\n", "
\n", " RabiExperiment\n", "
\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", "
\n", "
\n", " \n", " \n", "\n", "\n", "\n", "
\n", " Sweep Details:\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Repetitions\n", " Sweep with 10 repetitions\n", "
\n", " Associations\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
x180_pulse_amplitudesArray(name=_implicit, shape=(10,), dtype=float, unit=none, value=[0, 0.1111, 0.2222, 0.3333, 0.4444, 0.5556, 0.6667, 0.7778, 0.8889, 1])
\n", "\n", "
\n", "
\n", "\n", "
\n", "\n", " \n", " (SW)Sweep_x180_pulse_amplitudes\n", " \n", "
\n", "\n", "
\n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", "
\n", "
\n", " \n", " \n", "\n", "\n", "\n", "
\n", " Sweep Details:\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Repetitions\n", " Repeat with 1 repetitions\n", "
\n", "\n", "
\n", "
\n", "\n", "
\n", "\n", " \n", " (HW)Repeat(1)\n", " \n", "
\n", "\n", "
\n", " \n", "\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", " \n", "\tkeysight-logo-svg\n", "\t\n", "\t\n", "\t\t\n", "\t\n", "\n", "\n", " \n", "
\n", " Program Body\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " RabiExperiment\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Duration135 ns
Layers2
Targets4
\n", "
\n", "\n", "
\n", "
\n", "
\n", "
\n", " Layer #0\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Layer #0 \n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Duration30 ns
\n", "
\n", "\n", "
\n", "
\n", "
\n", "
\n", " Layer #1\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Layer #1 \n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Duration105 ns
\n", "
\n", "\n", "
\n", "
\n", "
\n", " xy_pulse\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('xy_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=xy_pulse_durations, value=30 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=x180_pulse_amplitudes, value=0.5, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=x_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=x_post_phase, value=0 rad, dtype=float, unit=rad)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " readout_pulse\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=readout_pulse_delay, value=0 s, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('readout_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=readout_pulse_duration, value=100 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=readout_pulse_amplitudes, value=0.1, dtype=float, unit=none)
FrequencyScalarRef(name=readout_frequencies, value=5.15 GHz, dtype=float, unit=Hz)
EnvelopeSineEnvelope()
Instantaneous PhaseScalarRef(name=readout_pulse_phases, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=measurement_post_phase, value=0 rad, dtype=float, unit=rad)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=5 ns, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " readout_acquisition\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_acquisition', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=acquisition_delay, value=5 ns, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Acquisition on ('readout_acquisition', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=acquisition_duration, value=100 ns, dtype=float, unit=s)
Integration Filter\n", " \n", " \n", "\n", "\n", "\n", "
\n", " RFWaveform \n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=acquisition_duration, value=100 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=measurement_integrator_amplitude, value=1, dtype=float, unit=none)
FrequencyScalarRef(name=readout_frequencies, value=5.15 GHz, dtype=float, unit=Hz)
EnvelopeConstantEnvelope()
Instantaneous PhaseScalarRef(name=measurement_integrator_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=measurement_integrator_post_phase, value=0 rad, dtype=float, unit=rad)
\n", "
\n", "\n", "
ClassifierClassifier(Array(name=references, shape=(1, 2), dtype=complex, unit=none))
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Delay on ('readout_acquisition', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=4.96308e-24 s, dtype=float, unit=s)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " 1\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Acquisition on ('readout_acquisition', 1)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=45 ns, dtype=float, unit=s)
Integration Filter\n", " \n", " \n", "\n", "\n", "\n", "
\n", " DCWaveform \n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalar(name=_implicit, value=45 ns, dtype=float, unit=s)
Amplitude1
Frequency0 Hz
EnvelopeConstantEnvelope()
Instantaneous Phase0
Post-phase0
\n", "
\n", "\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", "\n", "\n", "
\n", "\n", "\n", "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": { "text/html": { "isolated": true } }, "output_type": "display_data" } ], "source": [ "rabi_experiment.compiled_program.draw()" ] }, { "cell_type": "raw", "id": "1db29ac1", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "The ancilla qubit is mapped to the digitizer channel ``1`` and has a single\n", "acquisition that spans the duration of the control pulse." ] }, { "cell_type": "code", "execution_count": 11, "id": "aa5b9b0f", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:54.905066Z", "iopub.status.busy": "2025-10-02T01:26:54.904824Z", "iopub.status.idle": "2025-10-02T01:26:55.128349Z", "shell.execute_reply": "2025-10-02T01:26:55.127811Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.001977538922801614, -0.0006591796409338713, 0.0010986328125, -0.005053710658103228, 0.0057128905318677425, 0.002636718563735485, 0.0002197265566792339, 0.0057128905318677425, 0.00527343712747097, 0.007910155691206455, 0.005932617001235485, 0.010327148251235485, 0.0068115233443677425, 0.004833984188735485, 0.010107421316206455, 0.01296386681497097, 0.005053710658103228, 0.01296386681497097, 0.0057128905318677425, 0.003955077845603228, 0.005053710658103228, -0.003735351376235485, 0.0035156249068677425, -0.001538085867650807, -0.005932617001235485, -0.004833984188735485, -0.0057128905318677425, -0.00747070275247097, -0.007250976283103228, -0.007250976283103228, -0.00856933556497097, -0.0120849609375, -0.0068115233443677425, -0.00527343712747097, -0.003955077845603228, -0.0028564452659338713, 0.003076171735301614, 0.0032958984375, 0.005053710658103228, 0.004833984188735485, 0.01164550706744194, 0.01691894419491291, 0.015380859375, 0.01911620981991291, 0.015600585378706455, 0.02043456956744194, 0.0186767578125, 0.013623046688735485, 0.01801757700741291, 0.0164794921875, 0.01186523400247097, 0.002636718563735485, 0.005053710658103228, -0.001538085867650807, -0.006152343470603228, -0.00439453125, -0.01274413987994194, -0.01823730394244194, -0.02197265625, -0.02329101413488388, -0.0230712890625, -0.01582031138241291, -0.01911620981991291, -0.02241210825741291, -0.014721679501235485, -0.012304686941206455, -0.0142822265625, -0.01076660118997097, -0.009008788503706455, 0.0028564452659338713, 0.0046142577193677425, 0.0054931640625, 0.01625976525247097, 0.01889648474752903, 0.02351074106991291, 0.03142089769244194, 0.02570800669491291, 0.0230712890625, 0.024169921875, 0.03120117075741291, 0.024169921875, 0.02329101413488388, 0.01494140550494194, 0.01054687425494194, 0.0035156249068677425, 0.0, -0.008349609561264515, -0.01318359375, -0.01186523400247097, -0.02109374850988388, -0.02438964694738388, -0.0230712890625, -0.02614746056497097, -0.03229980543255806, -0.03581542894244194, -0.03339843824505806, -0.03054199181497097, -0.02263183519244194, -0.012304686941206455, -0.01076660118997097, -0.00439453125, 0.0024169920943677425, 0.0076904296875, 0.01076660118997097, 0.01691894419491291, 0.02614746056497097, 0.03339843824505806, 0.0318603515625, 0.03427734225988388, 0.03317870944738388, 0.04240722581744194, 0.03889160230755806, 0.03273925557732582, 0.02702636644244194, 0.02329101413488388, 0.0186767578125, 0.008129882626235485, 0.0017578124534338713, -0.0017578124534338713, -0.01779785193502903, -0.017578125, -0.02724609337747097, -0.02900390513241291, -0.03493652120232582, -0.04438476264476776, -0.037353515625, -0.03515625, -0.03955078125, -0.03471679612994194, -0.02702636644244194, -0.02768554538488388, -0.01296386681497097, -0.00966796837747097, 0.001538085867650807, 0.00637206993997097, 0.02131347544491291, 0.01933593675494194, 0.0274658203125, 0.03032226487994194, 0.03889160230755806, 0.04636230319738388, 0.0450439453125, 0.04218749701976776, 0.03955078125, 0.04108886793255806, 0.0318603515625, 0.03032226487994194, 0.02395019493997097, 0.014501952566206455, 0.007250976283103228, -0.013403319753706455, -0.01801757700741291, -0.02175292931497097, -0.03647460788488388, -0.0406494140625, -0.03977050632238388, -0.04746093600988388, -0.0516357421875, -0.0439453125, -0.04108886793255806, -0.04086913913488388, -0.03251953050494194, -0.03032226487994194, -0.01801757700741291, -0.006591796875, 0.0041748047806322575, 0.011425781063735485, 0.01625976525247097, 0.02482910081744194, 0.03208007663488388, 0.04020996019244194, 0.04262695088982582, 0.05229492112994194, 0.05031738057732582, 0.05295410007238388, 0.050537109375, 0.03977050632238388, 0.03559570387005806, 0.02658691257238388, 0.0186767578125, 0.015600585378706455, 0.0035156249068677425, -0.0054931640625, -0.01713867112994194, -0.03076171875, -0.03251953050494194, -0.04416503757238388, -0.041748046875, -0.046142578125, -0.04812011495232582, -0.05339355394244194, -0.04482421651482582, -0.03955078125, -0.03361816331744194, -0.03273925557732582, -0.01823730394244194, -0.013623046688735485, 0.003735351376235485, 0.0046142577193677425, 0.02219238132238388, 0.02570800669491291, 0.03383788838982582, 0.0439453125, 0.0538330078125, 0.05778808519244194, 0.05624999850988388, 0.05449218675494194, 0.05009765550494194, 0.04460449144244194, 0.04306640475988388, 0.02922363206744194, 0.01801757700741291, 0.01076660118997097, 0.003955077845603228, -0.004833984188735485, -0.02285156212747097, -0.03098144382238388, -0.04152831807732582, -0.04460449144244194, -0.04855956882238388, -0.05537109076976776, -0.05361327901482582, -0.054931640625, -0.04702148213982582, -0.05009765550494194, -0.03779296949505806, -0.03054199181497097, -0.0164794921875, -0.0076904296875, 0.002636718563735485, 0.01318359375, 0.015380859375, 0.03339843824505806, 0.0428466796875, 0.03955078125, 0.05559081956744194, 0.05690917745232582, 0.05449218675494194, 0.05295410007238388, 0.05009765550494194, 0.04108886793255806, 0.04020996019244194, 0.03010253794491291, 0.02285156212747097, 0.01076660118997097, -0.002197265625, -0.0120849609375, -0.0164794921875, -0.02680663950741291, -0.0384521484375, -0.03955078125, -0.05449218675494194, -0.05624999850988388, -0.04877929389476776, -0.05185546725988388, -0.04636230319738388, -0.04152831807732582, -0.03273925557732582, -0.03076171875, -0.02482910081744194, -0.01318359375, 0.0, 0.004833984188735485, 0.02153320237994194, 0.02680663950741291, 0.03603515401482582, 0.04262695088982582, 0.050537109375, 0.05449218675494194, 0.05141601338982582, 0.05734863132238388, 0.04570312425494194, 0.04218749701976776, 0.03933105245232582, 0.0340576171875, 0.02329101413488388, 0.01384277269244194, 0.007031249813735485, -0.01384277269244194, -0.02043456956744194, -0.0263671875, -0.03054199181497097, -0.04130859300494194, -0.04548339545726776, -0.050537109375, -0.05295410007238388, -0.05471191182732582, -0.04812011495232582, -0.03933105245232582, -0.037353515625, -0.02438964694738388, -0.02131347544491291, -0.009228515438735485, -0.0010986328125, 0.009008788503706455, 0.02153320237994194, 0.02548827975988388, 0.03559570387005806, 0.037353515625, 0.04592284932732582, 0.04987792670726776, 0.05097655951976776, 0.04899902269244194, 0.05031738057732582, 0.03889160230755806, 0.03647460788488388, 0.02658691257238388, 0.019775390625, 0.00856933556497097, -0.0004394531133584678, -0.003955077845603228, -0.014721679501235485, -0.02614746056497097, -0.03537597507238388, -0.0340576171875, -0.04020996019244194, -0.04196777194738388, -0.04350585862994194, -0.04262695088982582, -0.03779296949505806, -0.0406494140625, -0.02570800669491291, -0.0230712890625, -0.019775390625, -0.005932617001235485, 0.001538085867650807, 0.00439453125, 0.02351074106991291, 0.02460937388241291, 0.03339843824505806, 0.0428466796875, 0.0439453125, 0.03867187350988388, 0.04680175706744194, 0.04768066108226776, 0.04526367038488388, 0.03581542894244194, 0.02702636644244194, 0.02021484263241291, 0.013403319753706455, 0.00966796837747097, 0.004833984188735485, -0.010107421316206455, -0.01779785193502903, -0.02614746056497097, -0.02460937388241291, -0.03493652120232582, -0.03427734225988388, -0.03537597507238388, -0.04108886793255806, -0.0362548828125, -0.03933105245232582, -0.03559570387005806, -0.02438964694738388, -0.01999511756002903, -0.011206054128706455, -0.01164550706744194, 0.0028564452659338713, 0.003076171735301614, 0.017578125, 0.02504882775247097, 0.02592773362994194, 0.02834472618997097, 0.03493652120232582, 0.03757324069738388, 0.03537597507238388, 0.03427734225988388, 0.03559570387005806, 0.032958984375, 0.0252685546875, 0.02131347544491291, 0.02065429650247097, 0.007910155691206455, -0.001977538922801614, -0.0046142577193677425, -0.011206054128706455, -0.0186767578125, -0.019775390625, -0.02131347544491291, -0.02900390513241291, -0.02922363206744194, -0.02922363206744194, -0.0318603515625, -0.03229980543255806, -0.02680663950741291, -0.02043456956744194, -0.01625976525247097, -0.0068115233443677425, -0.005932617001235485, -0.005932617001235485, 0.0024169920943677425, 0.01318359375, 0.013623046688735485, 0.02065429650247097, 0.0263671875, 0.02548827975988388, 0.02834472618997097, 0.02878417819738388, 0.02570800669491291, 0.02482910081744194, 0.02285156212747097, 0.0230712890625, 0.01296386681497097, 0.01296386681497097, 0.00856933556497097, 0.0024169920943677425, -0.0076904296875, -0.007910155691206455, -0.014721679501235485, -0.01296386681497097, -0.01801757700741291, -0.0208740234375, -0.02504882775247097, -0.02043456956744194, -0.02021484263241291, -0.01625976525247097, -0.02219238132238388, -0.013403319753706455, -0.009008788503706455, -0.006152343470603228, 0.0006591796409338713, -0.0028564452659338713, 0.003955077845603228, 0.0041748047806322575, 0.01318359375, 0.008349609561264515, 0.01604003831744194, 0.013623046688735485, 0.02021484263241291, 0.02109374850988388, 0.015380859375, 0.02065429650247097, 0.009228515438735485, 0.01274413987994194, 0.01296386681497097, 0.00527343712747097, 0.0032958984375, 0.0035156249068677425, -0.0013183592818677425, -0.008349609561264515, -0.0087890625, -0.0098876953125, -0.01406249962747097, -0.0068115233443677425, -0.010107421316206455, -0.01186523400247097, -0.007031249813735485, -0.00856933556497097, -0.003735351376235485, -0.007910155691206455, -0.007250976283103228, -0.0024169920943677425, -0.003735351376235485, 0.0035156249068677425, 0.00439453125, 0.00439453125, 0.0054931640625, 0.0076904296875, 0.0028564452659338713, 0.006591796875, 0.003955077845603228, 0.0017578124534338713, 0.0032958984375, 0.01054687425494194, 0.0, -0.0006591796409338713, -0.0006591796409338713, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, 0.0006591796409338713, 0.0002197265566792339, 0.003735351376235485, -0.0004394531133584678, -0.001538085867650807, 0.002636718563735485, 0.0013183592818677425, 0.0004394531133584678, -0.0006591796409338713, 0.005053710658103228 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.1111)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.0002197265566792339, -0.0004394531133584678, 0.0032958984375, 0.003955077845603228, -0.0004394531133584678, -0.001977538922801614, -0.0004394531133584678, 0.003735351376235485, 0.0017578124534338713, 0.002636718563735485, 0.00856933556497097, 0.005053710658103228, 0.0032958984375, 0.0068115233443677425, 0.004833984188735485, 0.009448242373764515, 0.0035156249068677425, 0.0035156249068677425, 0.003076171735301614, 0.003735351376235485, -0.0013183592818677425, 0.0008789062267169356, -0.0032958984375, -0.0028564452659338713, -0.005053710658103228, -0.0046142577193677425, -0.007250976283103228, -0.0068115233443677425, -0.012304686941206455, -0.01076660118997097, -0.007031249813735485, -0.00637206993997097, -0.009448242373764515, -0.0041748047806322575, -0.008129882626235485, -0.0013183592818677425, -0.0035156249068677425, 0.0010986328125, 0.007031249813735485, 0.0087890625, 0.0054931640625, 0.0120849609375, 0.011425781063735485, 0.015600585378706455, 0.013623046688735485, 0.01999511756002903, 0.014721679501235485, 0.015600585378706455, 0.01669921912252903, 0.010327148251235485, 0.01384277269244194, 0.006591796875, 0.008129882626235485, -0.001538085867650807, -0.0004394531133584678, -0.0017578124534338713, -0.01625976525247097, -0.01911620981991291, -0.01296386681497097, -0.0186767578125, -0.01955566368997097, -0.02570800669491291, -0.0252685546875, -0.02175292931497097, -0.02197265625, -0.011425781063735485, -0.015380859375, -0.009448242373764515, -0.01076660118997097, 0.0, 0.009228515438735485, 0.008129882626235485, 0.01713867112994194, 0.024169921875, 0.02790527231991291, 0.02438964694738388, 0.02460937388241291, 0.03010253794491291, 0.03383788838982582, 0.0230712890625, 0.02592773362994194, 0.02570800669491291, 0.02153320237994194, 0.01274413987994194, 0.0024169920943677425, 0.001538085867650807, -0.008129882626235485, -0.0098876953125, -0.0120849609375, -0.02021484263241291, -0.02702636644244194, -0.028564453125, -0.02702636644244194, -0.0274658203125, -0.03251953050494194, -0.02944335900247097, -0.02570800669491291, -0.01889648474752903, -0.02153320237994194, -0.008349609561264515, -0.0032958984375, -0.002197265625, 0.00966796837747097, 0.017578125, 0.014721679501235485, 0.02944335900247097, 0.02768554538488388, 0.03383788838982582, 0.03955078125, 0.03779296949505806, 0.03471679612994194, 0.03801269456744194, 0.03581542894244194, 0.02702636644244194, 0.02197265625, 0.0120849609375, 0.008129882626235485, 0.0006591796409338713, -0.01274413987994194, -0.01625976525247097, -0.02021484263241291, -0.02900390513241291, -0.03493652120232582, -0.03933105245232582, -0.03581542894244194, -0.0384521484375, -0.03889160230755806, -0.04020996019244194, -0.03691406175494194, -0.0296630859375, -0.02395019493997097, -0.015600585378706455, -0.01076660118997097, 0.0004394531133584678, 0.003076171735301614, 0.02065429650247097, 0.02395019493997097, 0.02790527231991291, 0.03757324069738388, 0.041748046875, 0.04548339545726776, 0.0472412109375, 0.04218749701976776, 0.04548339545726776, 0.04240722581744194, 0.03361816331744194, 0.02351074106991291, 0.0208740234375, 0.009008788503706455, -0.0004394531133584678, -0.012524413876235485, -0.01625976525247097, -0.03076171875, -0.02790527231991291, -0.03581542894244194, -0.04636230319738388, -0.04350585862994194, -0.04768066108226776, -0.04240722581744194, -0.04482421651482582, -0.03559570387005806, -0.03471679612994194, -0.02724609337747097, -0.01955566368997097, -0.00747070275247097, 0.0032958984375, 0.012304686941206455, 0.02131347544491291, 0.028564453125, 0.03449707105755806, 0.04240722581744194, 0.0439453125, 0.04438476264476776, 0.0494384765625, 0.04658202826976776, 0.04702148213982582, 0.04592284932732582, 0.03493652120232582, 0.03208007663488388, 0.02043456956744194, 0.015380859375, 0.00439453125, -0.0046142577193677425, -0.02241210825741291, -0.02197265625, -0.032958984375, -0.04548339545726776, -0.04108886793255806, -0.04987792670726776, -0.05471191182732582, -0.050537109375, -0.04548339545726776, -0.046142578125, -0.03098144382238388, -0.0263671875, -0.02460937388241291, -0.0142822265625, -0.003076171735301614, 0.00527343712747097, 0.02219238132238388, 0.02702636644244194, 0.03537597507238388, 0.04350585862994194, 0.05361327901482582, 0.05537109076976776, 0.05031738057732582, 0.05185546725988388, 0.05141601338982582, 0.04460449144244194, 0.03999023512005806, 0.02944335900247097, 0.02175292931497097, 0.01384277269244194, 0.0, -0.0120849609375, -0.02109374850988388, -0.028564453125, -0.03493652120232582, -0.04372558370232582, -0.04812011495232582, -0.05339355394244194, -0.04768066108226776, -0.0560302734375, -0.04899902269244194, -0.04372558370232582, -0.03361816331744194, -0.0296630859375, -0.02263183519244194, -0.010327148251235485, 0.0006591796409338713, 0.01384277269244194, 0.02351074106991291, 0.02724609337747097, 0.03801269456744194, 0.0428466796875, 0.04855956882238388, 0.05866698920726776, 0.0538330078125, 0.05229492112994194, 0.05339355394244194, 0.04768066108226776, 0.04438476264476776, 0.03010253794491291, 0.01955566368997097, 0.011425781063735485, -0.002197265625, -0.00527343712747097, -0.01318359375, -0.02724609337747097, -0.03713378682732582, -0.04350585862994194, -0.04833984375, -0.0560302734375, -0.0538330078125, -0.05581054463982582, -0.04460449144244194, -0.04482421651482582, -0.04020996019244194, -0.0274658203125, -0.01933593675494194, -0.006152343470603228, -0.0013183592818677425, 0.015600585378706455, 0.01625976525247097, 0.02614746056497097, 0.03493652120232582, 0.046142578125, 0.05471191182732582, 0.0538330078125, 0.05690917745232582, 0.05295410007238388, 0.05317382514476776, 0.04570312425494194, 0.03779296949505806, 0.02702636644244194, 0.02460937388241291, 0.0076904296875, -0.0002197265566792339, -0.00966796837747097, -0.01582031138241291, -0.02988281100988388, -0.03713378682732582, -0.03867187350988388, -0.04746093600988388, -0.04877929389476776, -0.04987792670726776, -0.0450439453125, -0.04987792670726776, -0.04152831807732582, -0.0362548828125, -0.0263671875, -0.015600585378706455, -0.01186523400247097, 0.0004394531133584678, 0.01406249962747097, 0.01735839806497097, 0.02548827975988388, 0.0340576171875, 0.04372558370232582, 0.04658202826976776, 0.04899902269244194, 0.05141601338982582, 0.04812011495232582, 0.04416503757238388, 0.03911132737994194, 0.03339843824505806, 0.03010253794491291, 0.02021484263241291, 0.0068115233443677425, 0.0035156249068677425, -0.003076171735301614, -0.01406249962747097, -0.02482910081744194, -0.03142089769244194, -0.037353515625, -0.03999023512005806, -0.04592284932732582, -0.04460449144244194, -0.04768066108226776, -0.04130859300494194, -0.0428466796875, -0.03098144382238388, -0.0274658203125, -0.01625976525247097, -0.008349609561264515, -0.00439453125, 0.01274413987994194, 0.014501952566206455, 0.02570800669491291, 0.03361816331744194, 0.03801269456744194, 0.0406494140625, 0.04790038987994194, 0.04350585862994194, 0.04328612983226776, 0.04196777194738388, 0.0318603515625, 0.032958984375, 0.02548827975988388, 0.02175292931497097, 0.012304686941206455, 0.0046142577193677425, -0.0013183592818677425, -0.0120849609375, -0.019775390625, -0.02790527231991291, -0.03032226487994194, -0.037353515625, -0.0384521484375, -0.03999023512005806, -0.04152831807732582, -0.03054199181497097, -0.03449707105755806, -0.032958984375, -0.02592773362994194, -0.011425781063735485, -0.011206054128706455, 0.0, 0.0076904296875, 0.01054687425494194, 0.02197265625, 0.02460937388241291, 0.02614746056497097, 0.02944335900247097, 0.03361816331744194, 0.03229980543255806, 0.03603515401482582, 0.03889160230755806, 0.02768554538488388, 0.0274658203125, 0.01669921912252903, 0.017578125, 0.01186523400247097, 0.001538085867650807, -0.0087890625, -0.01384277269244194, -0.01274413987994194, -0.019775390625, -0.0274658203125, -0.02438964694738388, -0.03361816331744194, -0.0296630859375, -0.03164062276482582, -0.02702636644244194, -0.02175292931497097, -0.02065429650247097, -0.01604003831744194, -0.013403319753706455, -0.008129882626235485, -0.0032958984375, 0.0006591796409338713, 0.01076660118997097, 0.01516113243997097, 0.02021484263241291, 0.0230712890625, 0.02702636644244194, 0.02922363206744194, 0.02482910081744194, 0.02878417819738388, 0.024169921875, 0.01889648474752903, 0.02021484263241291, 0.01691894419491291, 0.00966796837747097, 0.009448242373764515, -0.0006591796409338713, -0.0013183592818677425, -0.0024169920943677425, -0.014721679501235485, -0.009228515438735485, -0.02065429650247097, -0.015600585378706455, -0.024169921875, -0.02285156212747097, -0.02395019493997097, -0.01735839806497097, -0.0142822265625, -0.01296386681497097, -0.011206054128706455, -0.013403319753706455, -0.0013183592818677425, 0.002636718563735485, -0.0002197265566792339, 0.004833984188735485, 0.009448242373764515, 0.010986328125, 0.014721679501235485, 0.015600585378706455, 0.014501952566206455, 0.01625976525247097, 0.01296386681497097, 0.010107421316206455, 0.010327148251235485, 0.017578125, 0.012524413876235485, 0.005053710658103228, 0.0054931640625, 0.004833984188735485, -0.0004394531133584678, -0.0041748047806322575, -0.00856933556497097, -0.00637206993997097, -0.009228515438735485, -0.010327148251235485, -0.01318359375, -0.005053710658103228, -0.009228515438735485, -0.0087890625, -0.0035156249068677425, -0.00439453125, -0.005053710658103228, -0.0032958984375, -0.0032958984375, -0.0006591796409338713, -0.003076171735301614, -0.0002197265566792339, 0.002197265625, 0.006591796875, 0.011425781063735485, 0.004833984188735485, 0.007031249813735485, 0.011206054128706455, 0.004833984188735485, 0.009228515438735485, 0.0032958984375, 0.00747070275247097, 0.001538085867650807, 0.002636718563735485, 0.00527343712747097, 0.006591796875, -0.0035156249068677425, -0.0008789062267169356, 0.0006591796409338713, 0.0057128905318677425, 0.0008789062267169356, 0.001538085867650807, -0.0008789062267169356, 0.00439453125, -0.003955077845603228, -0.002636718563735485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.2222)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.0024169920943677425, -0.0010986328125, 0.0008789062267169356, -0.0004394531133584678, 0.0, 0.0004394531133584678, -0.0013183592818677425, 0.003955077845603228, 0.003735351376235485, 0.00856933556497097, 0.0008789062267169356, 0.003735351376235485, 0.010107421316206455, 0.007910155691206455, 0.008349609561264515, 0.012524413876235485, 0.0041748047806322575, 0.009008788503706455, 0.0013183592818677425, 0.009448242373764515, -0.0004394531133584678, 0.001977538922801614, -0.003076171735301614, -0.0054931640625, 0.0010986328125, -0.003735351376235485, -0.01186523400247097, -0.010327148251235485, -0.008349609561264515, -0.01296386681497097, -0.01713867112994194, -0.007031249813735485, -0.008129882626235485, -0.009448242373764515, -0.0068115233443677425, -0.009008788503706455, -0.0035156249068677425, -0.003735351376235485, 0.0013183592818677425, 0.0068115233443677425, 0.007250976283103228, 0.01516113243997097, 0.014501952566206455, 0.01669921912252903, 0.013403319753706455, 0.02482910081744194, 0.01911620981991291, 0.02109374850988388, 0.02175292931497097, 0.012524413876235485, 0.007031249813735485, 0.012524413876235485, 0.006591796875, 0.005053710658103228, -0.002197265625, -0.003076171735301614, -0.013403319753706455, -0.01823730394244194, -0.01296386681497097, -0.01735839806497097, -0.02438964694738388, -0.01779785193502903, -0.02241210825741291, -0.02131347544491291, -0.01911620981991291, -0.01999511756002903, -0.01713867112994194, -0.00637206993997097, -0.00637206993997097, 0.003735351376235485, 0.002197265625, 0.01384277269244194, 0.01735839806497097, 0.02153320237994194, 0.02175292931497097, 0.03010253794491291, 0.0296630859375, 0.03142089769244194, 0.03208007663488388, 0.03317870944738388, 0.02768554538488388, 0.02373046800494194, 0.01845703087747097, 0.01054687425494194, 0.007910155691206455, 0.00527343712747097, 0.0004394531133584678, -0.009448242373764515, -0.0186767578125, -0.02373046800494194, -0.0208740234375, -0.02988281100988388, -0.02812499925494194, -0.02878417819738388, -0.0318603515625, -0.02614746056497097, -0.03098144382238388, -0.02263183519244194, -0.01691894419491291, -0.012304686941206455, -0.002636718563735485, 0.0010986328125, 0.010986328125, 0.01933593675494194, 0.02373046800494194, 0.01999511756002903, 0.02680663950741291, 0.03559570387005806, 0.04020996019244194, 0.041748046875, 0.03339843824505806, 0.03361816331744194, 0.0318603515625, 0.03493652120232582, 0.01999511756002903, 0.01999511756002903, 0.0076904296875, 0.0068115233443677425, -0.00856933556497097, -0.01713867112994194, -0.0164794921875, -0.0274658203125, -0.03537597507238388, -0.03449707105755806, -0.04020996019244194, -0.03999023512005806, -0.04196777194738388, -0.03669433668255806, -0.03757324069738388, -0.03251953050494194, -0.02548827975988388, -0.01516113243997097, -0.00637206993997097, 0.0013183592818677425, 0.009228515438735485, 0.013623046688735485, 0.02241210825741291, 0.03010253794491291, 0.03977050632238388, 0.04020996019244194, 0.04108886793255806, 0.04262695088982582, 0.04855956882238388, 0.04460449144244194, 0.03977050632238388, 0.0362548828125, 0.03339843824505806, 0.02263183519244194, 0.010107421316206455, 0.003735351376235485, -0.0024169920943677425, -0.01406249962747097, -0.02658691257238388, -0.03032226487994194, -0.03449707105755806, -0.0439453125, -0.046142578125, -0.04636230319738388, -0.04680175706744194, -0.0406494140625, -0.03955078125, -0.03889160230755806, -0.02614746056497097, -0.01735839806497097, -0.0142822265625, 0.003955077845603228, 0.00637206993997097, 0.014721679501235485, 0.03164062276482582, 0.03977050632238388, 0.03713378682732582, 0.04899902269244194, 0.05449218675494194, 0.05075683444738388, 0.04548339545726776, 0.04196777194738388, 0.03977050632238388, 0.037353515625, 0.02724609337747097, 0.02504882775247097, 0.013403319753706455, 0.002197265625, -0.0054931640625, -0.0120849609375, -0.03054199181497097, -0.03010253794491291, -0.0428466796875, -0.04548339545726776, -0.052734375, -0.04877929389476776, -0.05229492112994194, -0.04262695088982582, -0.04108886793255806, -0.03427734225988388, -0.03471679612994194, -0.015380859375, -0.009448242373764515, 0.0041748047806322575, 0.0098876953125, 0.017578125, 0.02570800669491291, 0.03889160230755806, 0.04196777194738388, 0.05229492112994194, 0.05537109076976776, 0.05207519233226776, 0.04965820163488388, 0.04812011495232582, 0.04482421651482582, 0.03977050632238388, 0.02922363206744194, 0.02153320237994194, 0.014721679501235485, 0.0008789062267169356, -0.007031249813735485, -0.02153320237994194, -0.02504882775247097, -0.03120117075741291, -0.03977050632238388, -0.05119628831744194, -0.04987792670726776, -0.05295410007238388, -0.05009765550494194, -0.0516357421875, -0.046142578125, -0.041748046875, -0.03317870944738388, -0.0186767578125, -0.01164550706744194, 0.0013183592818677425, 0.01384277269244194, 0.0230712890625, 0.02944335900247097, 0.03977050632238388, 0.03955078125, 0.050537109375, 0.05185546725988388, 0.05405273288488388, 0.05712890625, 0.04877929389476776, 0.04636230319738388, 0.04042968526482582, 0.03142089769244194, 0.01779785193502903, 0.010327148251235485, 0.00747070275247097, -0.0120849609375, -0.01801757700741291, -0.02834472618997097, -0.04196777194738388, -0.04262695088982582, -0.04877929389476776, -0.04855956882238388, -0.05295410007238388, -0.04965820163488388, -0.05449218675494194, -0.05009765550494194, -0.04306640475988388, -0.02812499925494194, -0.02438964694738388, -0.0120849609375, 0.0013183592818677425, 0.0098876953125, 0.02460937388241291, 0.03142089769244194, 0.04086913913488388, 0.04416503757238388, 0.0538330078125, 0.04702148213982582, 0.05756835639476776, 0.05712890625, 0.05031738057732582, 0.04965820163488388, 0.04262695088982582, 0.03251953050494194, 0.02658691257238388, 0.01076660118997097, 0.003076171735301614, -0.008129882626235485, -0.015600585378706455, -0.02834472618997097, -0.0340576171875, -0.03779296949505806, -0.04812011495232582, -0.04680175706744194, -0.05317382514476776, -0.04855956882238388, -0.04987792670726776, -0.04636230319738388, -0.03889160230755806, -0.02482910081744194, -0.01384277269244194, -0.008349609561264515, -0.003955077845603228, 0.0076904296875, 0.01999511756002903, 0.02438964694738388, 0.03010253794491291, 0.04306640475988388, 0.04438476264476776, 0.05207519233226776, 0.05581054463982582, 0.04570312425494194, 0.0439453125, 0.041748046875, 0.03779296949505806, 0.02988281100988388, 0.019775390625, 0.0087890625, 0.0024169920943677425, -0.00439453125, -0.01779785193502903, -0.02768554538488388, -0.028564453125, -0.03383788838982582, -0.04570312425494194, -0.04438476264476776, -0.04240722581744194, -0.04548339545726776, -0.04570312425494194, -0.03911132737994194, -0.0362548828125, -0.02900390513241291, -0.01779785193502903, -0.0054931640625, 0.0008789062267169356, 0.00856933556497097, 0.01735839806497097, 0.02834472618997097, 0.02900390513241291, 0.03801269456744194, 0.0406494140625, 0.04790038987994194, 0.04526367038488388, 0.04702148213982582, 0.0384521484375, 0.03955078125, 0.0318603515625, 0.02570800669491291, 0.02131347544491291, 0.008349609561264515, 0.003955077845603228, -0.006152343470603228, -0.01713867112994194, -0.01801757700741291, -0.03142089769244194, -0.03251953050494194, -0.03581542894244194, -0.03757324069738388, -0.0362548828125, -0.04020996019244194, -0.03691406175494194, -0.02944335900247097, -0.024169921875, -0.01933593675494194, -0.01889648474752903, -0.0017578124534338713, -0.0017578124534338713, 0.0028564452659338713, 0.01933593675494194, 0.0230712890625, 0.02658691257238388, 0.03339843824505806, 0.0362548828125, 0.03361816331744194, 0.03801269456744194, 0.03889160230755806, 0.03537597507238388, 0.0318603515625, 0.02790527231991291, 0.02329101413488388, 0.02021484263241291, 0.01318359375, 0.0041748047806322575, -0.008129882626235485, -0.010327148251235485, -0.01779785193502903, -0.01933593675494194, -0.02658691257238388, -0.02878417819738388, -0.03229980543255806, -0.02702636644244194, -0.02658691257238388, -0.02395019493997097, -0.02285156212747097, -0.02021484263241291, -0.019775390625, -0.010327148251235485, -0.00637206993997097, 0.002197265625, 0.0041748047806322575, 0.01054687425494194, 0.01164550706744194, 0.01823730394244194, 0.02109374850988388, 0.02109374850988388, 0.02548827975988388, 0.032958984375, 0.02878417819738388, 0.02351074106991291, 0.01801757700741291, 0.02285156212747097, 0.01582031138241291, 0.010107421316206455, 0.007250976283103228, 0.003955077845603228, -0.00637206993997097, -0.0120849609375, -0.01735839806497097, -0.01516113243997097, -0.02043456956744194, -0.01801757700741291, -0.01823730394244194, -0.02482910081744194, -0.01735839806497097, -0.0164794921875, -0.01582031138241291, -0.01933593675494194, -0.01318359375, -0.009008788503706455, -0.0028564452659338713, 0.0068115233443677425, 0.0032958984375, 0.00527343712747097, 0.00747070275247097, 0.010107421316206455, 0.0186767578125, 0.013623046688735485, 0.01713867112994194, 0.015380859375, 0.015600585378706455, 0.01274413987994194, 0.011206054128706455, 0.0120849609375, 0.009228515438735485, 0.00637206993997097, 0.003955077845603228, 0.001977538922801614, -0.003076171735301614, -0.001538085867650807, -0.005932617001235485, -0.009008788503706455, -0.010107421316206455, -0.003955077845603228, -0.01494140550494194, -0.0098876953125, -0.015380859375, -0.006591796875, -0.01186523400247097, -0.0098876953125, 0.0006591796409338713, -0.005053710658103228, 0.002636718563735485, 0.0, 0.0041748047806322575, 0.0032958984375, 0.0013183592818677425, 0.005932617001235485, 0.007910155691206455, 0.002197265625, 0.010986328125, 0.00527343712747097, 0.0013183592818677425, 0.002197265625, 0.0028564452659338713, 0.003735351376235485, 0.00637206993997097, -0.0008789062267169356, -0.0002197265566792339, 0.003955077845603228, -0.0010986328125, 0.0010986328125, -0.0002197265566792339, -0.0028564452659338713, 0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0002197265566792339, -0.0017578124534338713, 0.0057128905318677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.3333)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.0041748047806322575, -0.0017578124534338713, -0.0041748047806322575, -0.0017578124534338713, 0.0046142577193677425, 0.0041748047806322575, -0.0035156249068677425, 0.0054931640625, 0.00527343712747097, 0.0035156249068677425, 0.0004394531133584678, 0.0068115233443677425, 0.005932617001235485, 0.008349609561264515, 0.0068115233443677425, 0.012524413876235485, 0.005932617001235485, 0.003735351376235485, 0.003955077845603228, 0.005053710658103228, 0.00439453125, 0.002636718563735485, 0.0006591796409338713, -0.005932617001235485, -0.002636718563735485, -0.001977538922801614, -0.00856933556497097, -0.01384277269244194, -0.01076660118997097, -0.012304686941206455, -0.0142822265625, -0.014721679501235485, -0.01516113243997097, -0.007910155691206455, -0.0032958984375, -0.0041748047806322575, 0.0004394531133584678, 0.0010986328125, 0.00747070275247097, 0.0046142577193677425, 0.00637206993997097, 0.010327148251235485, 0.01669921912252903, 0.0208740234375, 0.02021484263241291, 0.02109374850988388, 0.01516113243997097, 0.02351074106991291, 0.014721679501235485, 0.011206054128706455, 0.01274413987994194, 0.005932617001235485, 0.0013183592818677425, 0.00527343712747097, -0.0013183592818677425, -0.008129882626235485, -0.005932617001235485, -0.01076660118997097, -0.017578125, -0.015600585378706455, -0.01933593675494194, -0.017578125, -0.01713867112994194, -0.01735839806497097, -0.02263183519244194, -0.014721679501235485, -0.01669921912252903, -0.007910155691206455, -0.0013183592818677425, 0.0057128905318677425, 0.0087890625, 0.008129882626235485, 0.02021484263241291, 0.015600585378706455, 0.0263671875, 0.0318603515625, 0.03361816331744194, 0.02944335900247097, 0.03317870944738388, 0.03164062276482582, 0.02812499925494194, 0.02285156212747097, 0.0208740234375, 0.01625976525247097, 0.013623046688735485, 0.0, -0.006591796875, -0.0068115233443677425, -0.013403319753706455, -0.01999511756002903, -0.02285156212747097, -0.02438964694738388, -0.02790527231991291, -0.03537597507238388, -0.03273925557732582, -0.02658691257238388, -0.02351074106991291, -0.01801757700741291, -0.01691894419491291, -0.01076660118997097, -0.002197265625, -0.0006591796409338713, 0.005932617001235485, 0.010327148251235485, 0.0230712890625, 0.02812499925494194, 0.02878417819738388, 0.03142089769244194, 0.0362548828125, 0.04196777194738388, 0.03515625, 0.03801269456744194, 0.03493652120232582, 0.0274658203125, 0.01801757700741291, 0.01713867112994194, 0.01274413987994194, 0.007250976283103228, -0.004833984188735485, -0.01164550706744194, -0.02021484263241291, -0.028564453125, -0.03537597507238388, -0.03933105245232582, -0.04086913913488388, -0.04240722581744194, -0.03515625, -0.03823241963982582, -0.03493652120232582, -0.02944335900247097, -0.0296630859375, -0.010327148251235485, -0.01296386681497097, 0.003076171735301614, 0.01054687425494194, 0.01933593675494194, 0.02680663950741291, 0.03427734225988388, 0.04196777194738388, 0.04306640475988388, 0.04152831807732582, 0.0450439453125, 0.04592284932732582, 0.04702148213982582, 0.041748046875, 0.03273925557732582, 0.02988281100988388, 0.02351074106991291, 0.01164550706744194, 0.0024169920943677425, -0.0032958984375, -0.02065429650247097, -0.019775390625, -0.0362548828125, -0.04152831807732582, -0.0439453125, -0.04592284932732582, -0.04372558370232582, -0.04218749701976776, -0.04130859300494194, -0.04196777194738388, -0.03317870944738388, -0.02482910081744194, -0.01845703087747097, -0.008349609561264515, -0.003955077845603228, 0.008349609561264515, 0.017578125, 0.02878417819738388, 0.03339843824505806, 0.0384521484375, 0.04833984375, 0.05141601338982582, 0.05712890625, 0.05207519233226776, 0.0494384765625, 0.0406494140625, 0.03647460788488388, 0.02812499925494194, 0.02570800669491291, 0.00856933556497097, 0.0032958984375, -0.009228515438735485, -0.01845703087747097, -0.02988281100988388, -0.0318603515625, -0.03603515401482582, -0.04658202826976776, -0.04855956882238388, -0.05185546725988388, -0.04680175706744194, -0.04548339545726776, -0.04592284932732582, -0.0406494140625, -0.02329101413488388, -0.01691894419491291, -0.0087890625, 0.001977538922801614, 0.012524413876235485, 0.01779785193502903, 0.02614746056497097, 0.03581542894244194, 0.0428466796875, 0.04965820163488388, 0.05361327901482582, 0.05515136569738388, 0.04987792670726776, 0.05031738057732582, 0.04328612983226776, 0.0450439453125, 0.03515625, 0.02790527231991291, 0.013403319753706455, 0.003076171735301614, -0.00527343712747097, -0.01999511756002903, -0.02614746056497097, -0.03010253794491291, -0.03999023512005806, -0.0472412109375, -0.05251464620232582, -0.05097655951976776, -0.0494384765625, -0.05339355394244194, -0.04592284932732582, -0.03537597507238388, -0.0252685546875, -0.01494140550494194, -0.011425781063735485, -0.0004394531133584678, 0.013623046688735485, 0.024169921875, 0.02504882775247097, 0.04416503757238388, 0.0428466796875, 0.05207519233226776, 0.05449218675494194, 0.05844726413488388, 0.05075683444738388, 0.052734375, 0.05141601338982582, 0.03867187350988388, 0.03493652120232582, 0.024169921875, 0.01186523400247097, 0.0004394531133584678, -0.01274413987994194, -0.0208740234375, -0.032958984375, -0.03933105245232582, -0.046142578125, -0.04548339545726776, -0.04877929389476776, -0.04746093600988388, -0.05119628831744194, -0.04482421651482582, -0.04020996019244194, -0.037353515625, -0.02790527231991291, -0.01669921912252903, -0.01296386681497097, 0.003076171735301614, 0.01186523400247097, 0.02263183519244194, 0.028564453125, 0.03603515401482582, 0.04108886793255806, 0.05449218675494194, 0.050537109375, 0.05888671800494194, 0.05031738057732582, 0.0472412109375, 0.04812011495232582, 0.03691406175494194, 0.02724609337747097, 0.02395019493997097, 0.01691894419491291, -0.001538085867650807, -0.012524413876235485, -0.013403319753706455, -0.02988281100988388, -0.03142089769244194, -0.04460449144244194, -0.04746093600988388, -0.05251464620232582, -0.05449218675494194, -0.04921874776482582, -0.04196777194738388, -0.04592284932732582, -0.03251953050494194, -0.02570800669491291, -0.0142822265625, -0.007910155691206455, -0.002197265625, 0.01274413987994194, 0.0252685546875, 0.03054199181497097, 0.03955078125, 0.03999023512005806, 0.05339355394244194, 0.04526367038488388, 0.04877929389476776, 0.05075683444738388, 0.05075683444738388, 0.04262695088982582, 0.04086913913488388, 0.03208007663488388, 0.01801757700741291, 0.01735839806497097, -0.001977538922801614, -0.003955077845603228, -0.01384277269244194, -0.02175292931497097, -0.0340576171875, -0.03339843824505806, -0.03823241963982582, -0.0428466796875, -0.04350585862994194, -0.04658202826976776, -0.046142578125, -0.03779296949505806, -0.03471679612994194, -0.0296630859375, -0.013623046688735485, -0.0098876953125, -0.0032958984375, 0.0098876953125, 0.01691894419491291, 0.02460937388241291, 0.03054199181497097, 0.03339843824505806, 0.0428466796875, 0.0384521484375, 0.04658202826976776, 0.04658202826976776, 0.03867187350988388, 0.04020996019244194, 0.03120117075741291, 0.02922363206744194, 0.013623046688735485, 0.00856933556497097, -0.001977538922801614, -0.0004394531133584678, -0.011206054128706455, -0.02109374850988388, -0.024169921875, -0.02768554538488388, -0.03471679612994194, -0.0450439453125, -0.03955078125, -0.04306640475988388, -0.03669433668255806, -0.02724609337747097, -0.03142089769244194, -0.02395019493997097, -0.01691894419491291, -0.0076904296875, -0.0002197265566792339, -0.0002197265566792339, 0.0142822265625, 0.02219238132238388, 0.02351074106991291, 0.03559570387005806, 0.03999023512005806, 0.032958984375, 0.03493652120232582, 0.04108886793255806, 0.03273925557732582, 0.03120117075741291, 0.02548827975988388, 0.02131347544491291, 0.01516113243997097, 0.002197265625, 0.0013183592818677425, -0.009228515438735485, -0.0120849609375, -0.012304686941206455, -0.024169921875, -0.02285156212747097, -0.028564453125, -0.02768554538488388, -0.03427734225988388, -0.03098144382238388, -0.02285156212747097, -0.02153320237994194, -0.02065429650247097, -0.02197265625, -0.006152343470603228, -0.0006591796409338713, -0.001977538922801614, 0.0006591796409338713, 0.013403319753706455, 0.015600585378706455, 0.02043456956744194, 0.02351074106991291, 0.03120117075741291, 0.02812499925494194, 0.03076171875, 0.0230712890625, 0.02790527231991291, 0.02153320237994194, 0.015380859375, 0.015380859375, 0.0164794921875, 0.0098876953125, -0.002197265625, -0.0068115233443677425, -0.010327148251235485, -0.01186523400247097, -0.0120849609375, -0.01582031138241291, -0.02197265625, -0.02460937388241291, -0.019775390625, -0.019775390625, -0.0230712890625, -0.01604003831744194, -0.01384277269244194, -0.01516113243997097, -0.005053710658103228, -0.006591796875, -0.0010986328125, 0.002197265625, 0.003076171735301614, 0.014721679501235485, 0.01823730394244194, 0.012524413876235485, 0.01955566368997097, 0.02065429650247097, 0.02109374850988388, 0.01384277269244194, 0.01076660118997097, 0.01274413987994194, 0.0186767578125, 0.008129882626235485, 0.01076660118997097, 0.003955077845603228, 0.0013183592818677425, -0.0008789062267169356, -0.0054931640625, -0.010327148251235485, -0.012524413876235485, -0.0120849609375, -0.01076660118997097, -0.007250976283103228, -0.0032958984375, -0.010986328125, -0.0076904296875, -0.0076904296875, -0.0068115233443677425, -0.0098876953125, -0.0054931640625, 0.0006591796409338713, -0.0010986328125, 0.0035156249068677425, 0.006591796875, 0.0046142577193677425, 0.007031249813735485, 0.0087890625, 0.007031249813735485, 0.01076660118997097, 0.006591796875, 0.01076660118997097, 0.011425781063735485, 0.006591796875, 0.0057128905318677425, 0.006152343470603228, 0.0057128905318677425, 0.00747070275247097, 0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, 0.0010986328125, 0.0028564452659338713, 0.0024169920943677425, 0.00439453125, 0.00527343712747097, 0.003735351376235485, 0.003076171735301614, 0.005053710658103228 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.4444)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.0002197265566792339, 0.0028564452659338713, -0.002636718563735485, 0.0, -0.0010986328125, 0.0008789062267169356, 0.0041748047806322575, 0.006152343470603228, 0.0057128905318677425, 0.006591796875, 0.0054931640625, 0.007250976283103228, 0.005053710658103228, 0.00856933556497097, 0.00637206993997097, 0.009448242373764515, 0.00966796837747097, 0.003076171735301614, 0.00527343712747097, -0.0004394531133584678, 0.00637206993997097, 0.001977538922801614, 0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0041748047806322575, -0.003076171735301614, -0.00856933556497097, -0.00527343712747097, -0.0142822265625, -0.011425781063735485, -0.0076904296875, -0.006591796875, -0.015600585378706455, -0.003076171735301614, -0.007031249813735485, -0.0013183592818677425, 0.0013183592818677425, 0.009228515438735485, 0.008129882626235485, 0.01296386681497097, 0.012524413876235485, 0.017578125, 0.011206054128706455, 0.0142822265625, 0.01735839806497097, 0.02065429650247097, 0.02021484263241291, 0.017578125, 0.012304686941206455, 0.01274413987994194, 0.005932617001235485, 0.004833984188735485, -0.003735351376235485, -0.0032958984375, -0.00856933556497097, -0.015380859375, -0.010327148251235485, -0.02109374850988388, -0.01713867112994194, -0.01516113243997097, -0.0252685546875, -0.015600585378706455, -0.024169921875, -0.0164794921875, -0.01384277269244194, -0.013403319753706455, -0.010107421316206455, -0.003955077845603228, 0.002197265625, 0.003955077845603228, 0.0076904296875, 0.01735839806497097, 0.01801757700741291, 0.02680663950741291, 0.02768554538488388, 0.02504882775247097, 0.02812499925494194, 0.028564453125, 0.024169921875, 0.02878417819738388, 0.01779785193502903, 0.014501952566206455, 0.01735839806497097, 0.0098876953125, 0.0035156249068677425, -0.001977538922801614, -0.0087890625, -0.01516113243997097, -0.02482910081744194, -0.02592773362994194, -0.03098144382238388, -0.03339843824505806, -0.03559570387005806, -0.03471679612994194, -0.03339843824505806, -0.02219238132238388, -0.01999511756002903, -0.01669921912252903, -0.0076904296875, -0.003955077845603228, 0.0010986328125, 0.006152343470603228, 0.013403319753706455, 0.01889648474752903, 0.02878417819738388, 0.03427734225988388, 0.03142089769244194, 0.03933105245232582, 0.0362548828125, 0.03142089769244194, 0.03867187350988388, 0.02812499925494194, 0.0263671875, 0.02768554538488388, 0.01406249962747097, 0.00527343712747097, 0.009008788503706455, -0.0035156249068677425, -0.0098876953125, -0.02197265625, -0.02834472618997097, -0.03229980543255806, -0.03911132737994194, -0.03999023512005806, -0.03933105245232582, -0.037353515625, -0.03273925557732582, -0.03098144382238388, -0.02504882775247097, -0.02702636644244194, -0.015380859375, -0.009008788503706455, 0.0046142577193677425, 0.00747070275247097, 0.02131347544491291, 0.02219238132238388, 0.02702636644244194, 0.03757324069738388, 0.03955078125, 0.04833984375, 0.0494384765625, 0.0494384765625, 0.04108886793255806, 0.04130859300494194, 0.03537597507238388, 0.03054199181497097, 0.02175292931497097, 0.012524413876235485, 0.00637206993997097, -0.01054687425494194, -0.01604003831744194, -0.0208740234375, -0.03317870944738388, -0.0384521484375, -0.0406494140625, -0.0450439453125, -0.04899902269244194, -0.04702148213982582, -0.0472412109375, -0.037353515625, -0.02988281100988388, -0.02702636644244194, -0.02197265625, -0.012524413876235485, 0.0002197265566792339, 0.006591796875, 0.01889648474752903, 0.02900390513241291, 0.03383788838982582, 0.04592284932732582, 0.05119628831744194, 0.05141601338982582, 0.05207519233226776, 0.05317382514476776, 0.04746093600988388, 0.04130859300494194, 0.0340576171875, 0.02988281100988388, 0.01625976525247097, 0.013623046688735485, 0.0076904296875, -0.009008788503706455, -0.014501952566206455, -0.02460937388241291, -0.03515625, -0.03977050632238388, -0.04768066108226776, -0.050537109375, -0.04702148213982582, -0.05471191182732582, -0.05207519233226776, -0.0439453125, -0.0340576171875, -0.02482910081744194, -0.02065429650247097, -0.0057128905318677425, -0.0028564452659338713, 0.010107421316206455, 0.01933593675494194, 0.02395019493997097, 0.04196777194738388, 0.04833984375, 0.05405273288488388, 0.05251464620232582, 0.0538330078125, 0.05646972358226776, 0.04921874776482582, 0.04460449144244194, 0.04240722581744194, 0.0318603515625, 0.02263183519244194, 0.015600585378706455, 0.001977538922801614, -0.003076171735301614, -0.01889648474752903, -0.02922363206744194, -0.03449707105755806, -0.04262695088982582, -0.0538330078125, -0.05009765550494194, -0.0494384765625, -0.0560302734375, -0.05141601338982582, -0.04130859300494194, -0.04416503757238388, -0.03208007663488388, -0.02021484263241291, -0.009008788503706455, 0.00439453125, 0.006152343470603228, 0.02219238132238388, 0.03273925557732582, 0.03933105245232582, 0.04877929389476776, 0.04790038987994194, 0.052734375, 0.05251464620232582, 0.052734375, 0.05624999850988388, 0.05009765550494194, 0.04328612983226776, 0.03537597507238388, 0.019775390625, 0.0076904296875, 0.0, -0.009008788503706455, -0.01801757700741291, -0.02702636644244194, -0.03999023512005806, -0.04702148213982582, -0.04965820163488388, -0.05207519233226776, -0.04899902269244194, -0.05646972358226776, -0.04768066108226776, -0.04526367038488388, -0.03581542894244194, -0.02878417819738388, -0.02021484263241291, -0.01186523400247097, 0.001538085867650807, 0.006152343470603228, 0.02548827975988388, 0.032958984375, 0.032958984375, 0.04702148213982582, 0.04570312425494194, 0.05756835639476776, 0.05646972358226776, 0.04833984375, 0.04702148213982582, 0.05185546725988388, 0.04130859300494194, 0.03427734225988388, 0.0230712890625, 0.01186523400247097, -0.002197265625, -0.011206054128706455, -0.01933593675494194, -0.02482910081744194, -0.03515625, -0.03713378682732582, -0.04790038987994194, -0.05317382514476776, -0.05515136569738388, -0.05207519233226776, -0.04833984375, -0.03801269456744194, -0.03757324069738388, -0.0296630859375, -0.02021484263241291, -0.007250976283103228, -0.002197265625, 0.007910155691206455, 0.014721679501235485, 0.02812499925494194, 0.03669433668255806, 0.03911132737994194, 0.04877929389476776, 0.05207519233226776, 0.052734375, 0.05119628831744194, 0.050537109375, 0.0428466796875, 0.03515625, 0.02768554538488388, 0.02395019493997097, 0.009448242373764515, -0.0008789062267169356, -0.00747070275247097, -0.014721679501235485, -0.0208740234375, -0.037353515625, -0.0362548828125, -0.04372558370232582, -0.04877929389476776, -0.04152831807732582, -0.04987792670726776, -0.04328612983226776, -0.03977050632238388, -0.03361816331744194, -0.02812499925494194, -0.02131347544491291, -0.007250976283103228, 0.0041748047806322575, 0.009008788503706455, 0.01713867112994194, 0.03010253794491291, 0.03603515401482582, 0.0340576171875, 0.04130859300494194, 0.04833984375, 0.05207519233226776, 0.04372558370232582, 0.03955078125, 0.0340576171875, 0.03361816331744194, 0.02285156212747097, 0.01735839806497097, 0.012524413876235485, -0.0002197265566792339, -0.0035156249068677425, -0.01494140550494194, -0.01955566368997097, -0.0230712890625, -0.03537597507238388, -0.03559570387005806, -0.032958984375, -0.03691406175494194, -0.04130859300494194, -0.0318603515625, -0.02922363206744194, -0.03010253794491291, -0.02351074106991291, -0.013623046688735485, -0.009228515438735485, 0.0013183592818677425, 0.002636718563735485, 0.01516113243997097, 0.02153320237994194, 0.028564453125, 0.03361816331744194, 0.03032226487994194, 0.03911132737994194, 0.03801269456744194, 0.03933105245232582, 0.03801269456744194, 0.02724609337747097, 0.02570800669491291, 0.02395019493997097, 0.01889648474752903, 0.0041748047806322575, 0.0068115233443677425, -0.00856933556497097, -0.0076904296875, -0.02109374850988388, -0.02153320237994194, -0.02790527231991291, -0.02680663950741291, -0.0296630859375, -0.03054199181497097, -0.02878417819738388, -0.02504882775247097, -0.024169921875, -0.015600585378706455, -0.01801757700741291, -0.01296386681497097, -0.007031249813735485, 0.003955077845603228, 0.0010986328125, 0.014721679501235485, 0.01516113243997097, 0.01801757700741291, 0.02241210825741291, 0.01955566368997097, 0.032958984375, 0.03251953050494194, 0.02504882775247097, 0.02482910081744194, 0.02548827975988388, 0.024169921875, 0.0142822265625, 0.008349609561264515, 0.00856933556497097, 0.0004394531133584678, -0.007031249813735485, -0.002636718563735485, -0.01076660118997097, -0.0164794921875, -0.0142822265625, -0.017578125, -0.0164794921875, -0.02263183519244194, -0.02065429650247097, -0.024169921875, -0.02065429650247097, -0.01164550706744194, -0.00966796837747097, -0.0098876953125, -0.0013183592818677425, 0.005053710658103228, 0.00637206993997097, 0.0057128905318677425, 0.01186523400247097, 0.010107421316206455, 0.01999511756002903, 0.01318359375, 0.014721679501235485, 0.01999511756002903, 0.01713867112994194, 0.01801757700741291, 0.01625976525247097, 0.01516113243997097, 0.013623046688735485, 0.01384277269244194, 0.003076171735301614, 0.0008789062267169356, 0.0004394531133584678, -0.007910155691206455, -0.009228515438735485, -0.0054931640625, -0.0041748047806322575, -0.008349609561264515, -0.008349609561264515, -0.006591796875, -0.01164550706744194, -0.007910155691206455, -0.00966796837747097, -0.007031249813735485, -0.005932617001235485, -0.002636718563735485, -0.005053710658103228, -0.0032958984375, -0.002197265625, 0.002636718563735485, 0.0010986328125, 0.00439453125, 0.005053710658103228, 0.005053710658103228, 0.0068115233443677425, 0.008349609561264515, 0.005932617001235485, 0.003735351376235485, 0.009448242373764515, 0.0013183592818677425, 0.002197265625, 0.0054931640625, 0.006152343470603228, 0.001977538922801614, -0.0017578124534338713, 0.004833984188735485, 0.001977538922801614, 0.007031249813735485, -0.00439453125, -0.0008789062267169356, -0.0035156249068677425, 0.0010986328125, 0.0054931640625, 0.0024169920943677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.5556)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.002197265625, -0.0032958984375, -0.0002197265566792339, 0.0035156249068677425, -0.003735351376235485, 0.005932617001235485, 0.003076171735301614, 0.0076904296875, -0.0008789062267169356, 0.004833984188735485, 0.010327148251235485, 0.009228515438735485, 0.0087890625, 0.012524413876235485, 0.0046142577193677425, 0.00966796837747097, 0.003955077845603228, 0.009008788503706455, 0.0017578124534338713, 0.0057128905318677425, -0.003955077845603228, -0.0006591796409338713, 0.0028564452659338713, -0.008129882626235485, -0.0057128905318677425, -0.0098876953125, -0.002197265625, -0.0057128905318677425, -0.01296386681497097, -0.010986328125, -0.01406249962747097, -0.010986328125, -0.007910155691206455, -0.006152343470603228, -0.006591796875, -0.009448242373764515, -0.00439453125, -0.0010986328125, 0.003955077845603228, 0.0076904296875, 0.00747070275247097, 0.011206054128706455, 0.01054687425494194, 0.01845703087747097, 0.01494140550494194, 0.01604003831744194, 0.01779785193502903, 0.02329101413488388, 0.01955566368997097, 0.01669921912252903, 0.009008788503706455, 0.01384277269244194, 0.010327148251235485, 0.0004394531133584678, -0.005932617001235485, -0.007910155691206455, -0.0098876953125, -0.014721679501235485, -0.01779785193502903, -0.01604003831744194, -0.019775390625, -0.02768554538488388, -0.02570800669491291, -0.01823730394244194, -0.02197265625, -0.01933593675494194, -0.01823730394244194, -0.0098876953125, -0.003076171735301614, 0.0008789062267169356, 0.00747070275247097, 0.011206054128706455, 0.01779785193502903, 0.013623046688735485, 0.01845703087747097, 0.02922363206744194, 0.02768554538488388, 0.028564453125, 0.02395019493997097, 0.02988281100988388, 0.02109374850988388, 0.01801757700741291, 0.02197265625, 0.012304686941206455, 0.0041748047806322575, 0.004833984188735485, -0.003955077845603228, -0.01318359375, -0.01933593675494194, -0.0252685546875, -0.024169921875, -0.02702636644244194, -0.02724609337747097, -0.03251953050494194, -0.03383788838982582, -0.024169921875, -0.02900390513241291, -0.02219238132238388, -0.02153320237994194, -0.010107421316206455, -0.010986328125, -0.003955077845603228, 0.00747070275247097, 0.01494140550494194, 0.01625976525247097, 0.02043456956744194, 0.0318603515625, 0.03471679612994194, 0.03911132737994194, 0.04372558370232582, 0.03251953050494194, 0.032958984375, 0.03361816331744194, 0.02285156212747097, 0.02395019493997097, 0.011425781063735485, 0.008129882626235485, 0.0006591796409338713, -0.0098876953125, -0.01076660118997097, -0.0186767578125, -0.02197265625, -0.03076171875, -0.03757324069738388, -0.03647460788488388, -0.03801269456744194, -0.03757324069738388, -0.03273925557732582, -0.03757324069738388, -0.02680663950741291, -0.01889648474752903, -0.013623046688735485, -0.005932617001235485, 0.0041748047806322575, 0.0120849609375, 0.014501952566206455, 0.0230712890625, 0.0318603515625, 0.04108886793255806, 0.03977050632238388, 0.04306640475988388, 0.04548339545726776, 0.0472412109375, 0.0439453125, 0.03581542894244194, 0.0318603515625, 0.03164062276482582, 0.01691894419491291, 0.01054687425494194, 0.0017578124534338713, -0.005932617001235485, -0.019775390625, -0.02482910081744194, -0.02724609337747097, -0.03779296949505806, -0.04548339545726776, -0.04592284932732582, -0.0450439453125, -0.04636230319738388, -0.03977050632238388, -0.04196777194738388, -0.03054199181497097, -0.0274658203125, -0.01625976525247097, -0.009448242373764515, 0.0013183592818677425, 0.00747070275247097, 0.02043456956744194, 0.03164062276482582, 0.03120117075741291, 0.04526367038488388, 0.05009765550494194, 0.05515136569738388, 0.04855956882238388, 0.04921874776482582, 0.046142578125, 0.04328612983226776, 0.03515625, 0.03361816331744194, 0.02504882775247097, 0.01384277269244194, 0.002197265625, -0.006591796875, -0.015380859375, -0.02153320237994194, -0.03559570387005806, -0.04196777194738388, -0.0406494140625, -0.052734375, -0.0472412109375, -0.050537109375, -0.0450439453125, -0.04042968526482582, -0.0384521484375, -0.02812499925494194, -0.01823730394244194, -0.0057128905318677425, 0.0017578124534338713, 0.01296386681497097, 0.0230712890625, 0.02768554538488388, 0.0362548828125, 0.04680175706744194, 0.04790038987994194, 0.05295410007238388, 0.05954589694738388, 0.05668945237994194, 0.04987792670726776, 0.04987792670726776, 0.04526367038488388, 0.03098144382238388, 0.0230712890625, 0.01076660118997097, 0.0032958984375, -0.0046142577193677425, -0.02109374850988388, -0.02570800669491291, -0.03229980543255806, -0.04790038987994194, -0.04482421651482582, -0.05317382514476776, -0.05646972358226776, -0.04921874776482582, -0.05537109076976776, -0.04636230319738388, -0.0439453125, -0.03383788838982582, -0.02263183519244194, -0.01318359375, 0.0017578124534338713, 0.0120849609375, 0.0230712890625, 0.03317870944738388, 0.04152831807732582, 0.04240722581744194, 0.05581054463982582, 0.05646972358226776, 0.05229492112994194, 0.05559081956744194, 0.0516357421875, 0.05009765550494194, 0.04592284932732582, 0.03164062276482582, 0.02109374850988388, 0.010327148251235485, 0.00439453125, -0.010107421316206455, -0.0142822265625, -0.02680663950741291, -0.03603515401482582, -0.046142578125, -0.04526367038488388, -0.05537109076976776, -0.0516357421875, -0.04702148213982582, -0.05097655951976776, -0.0472412109375, -0.03361816331744194, -0.02658691257238388, -0.01933593675494194, -0.01274413987994194, 0.0, 0.012524413876235485, 0.01823730394244194, 0.02570800669491291, 0.04130859300494194, 0.04592284932732582, 0.05229492112994194, 0.05646972358226776, 0.05734863132238388, 0.05427245795726776, 0.04768066108226776, 0.04921874776482582, 0.0384521484375, 0.03142089769244194, 0.01845703087747097, 0.011206054128706455, 0.0002197265566792339, -0.0087890625, -0.015600585378706455, -0.03010253794491291, -0.03164062276482582, -0.03779296949505806, -0.0428466796875, -0.0450439453125, -0.04680175706744194, -0.0450439453125, -0.04899902269244194, -0.04570312425494194, -0.03164062276482582, -0.024169921875, -0.02065429650247097, -0.00747070275247097, -0.0002197265566792339, 0.011206054128706455, 0.01296386681497097, 0.02614746056497097, 0.0318603515625, 0.0450439453125, 0.05075683444738388, 0.04965820163488388, 0.05339355394244194, 0.05031738057732582, 0.0494384765625, 0.03977050632238388, 0.03669433668255806, 0.03032226487994194, 0.01911620981991291, 0.01494140550494194, -0.0010986328125, -0.004833984188735485, -0.01318359375, -0.02373046800494194, -0.03493652120232582, -0.0340576171875, -0.03911132737994194, -0.04196777194738388, -0.04790038987994194, -0.04965820163488388, -0.04328612983226776, -0.032958984375, -0.03229980543255806, -0.02548827975988388, -0.01823730394244194, -0.010107421316206455, -0.0032958984375, 0.0054931640625, 0.01735839806497097, 0.02460937388241291, 0.032958984375, 0.03867187350988388, 0.04086913913488388, 0.04328612983226776, 0.04108886793255806, 0.04328612983226776, 0.04262695088982582, 0.03647460788488388, 0.0318603515625, 0.02680663950741291, 0.01845703087747097, 0.009228515438735485, 0.007910155691206455, -0.0035156249068677425, -0.0186767578125, -0.02438964694738388, -0.03251953050494194, -0.0296630859375, -0.0318603515625, -0.03911132737994194, -0.04262695088982582, -0.04218749701976776, -0.032958984375, -0.03427734225988388, -0.02702636644244194, -0.01713867112994194, -0.01691894419491291, -0.0041748047806322575, -0.0017578124534338713, 0.005053710658103228, 0.01384277269244194, 0.01933593675494194, 0.02944335900247097, 0.03317870944738388, 0.03801269456744194, 0.03449707105755806, 0.03164062276482582, 0.03647460788488388, 0.03098144382238388, 0.02548827975988388, 0.02900390513241291, 0.01494140550494194, 0.0098876953125, 0.004833984188735485, 0.0008789062267169356, 0.001977538922801614, -0.008129882626235485, -0.013403319753706455, -0.02285156212747097, -0.02351074106991291, -0.02614746056497097, -0.03317870944738388, -0.028564453125, -0.03076171875, -0.02614746056497097, -0.02460937388241291, -0.01823730394244194, -0.01691894419491291, -0.011425781063735485, -0.00637206993997097, -0.0002197265566792339, 0.0098876953125, 0.01604003831744194, 0.011425781063735485, 0.02219238132238388, 0.02658691257238388, 0.02285156212747097, 0.02724609337747097, 0.02197265625, 0.02329101413488388, 0.02109374850988388, 0.0230712890625, 0.02065429650247097, 0.01582031138241291, 0.012304686941206455, 0.005053710658103228, 0.006152343470603228, -0.005053710658103228, -0.0041748047806322575, -0.0087890625, -0.01318359375, -0.015380859375, -0.017578125, -0.02351074106991291, -0.02438964694738388, -0.01845703087747097, -0.013403319753706455, -0.015600585378706455, -0.012304686941206455, -0.01274413987994194, -0.0054931640625, -0.00637206993997097, -0.0008789062267169356, 0.007910155691206455, 0.003735351376235485, 0.00966796837747097, 0.01516113243997097, 0.013623046688735485, 0.0142822265625, 0.0164794921875, 0.02263183519244194, 0.01582031138241291, 0.01735839806497097, 0.014501952566206455, 0.01296386681497097, 0.01076660118997097, 0.0057128905318677425, 0.0010986328125, 0.0032958984375, -0.0032958984375, -0.0057128905318677425, -0.0028564452659338713, -0.002636718563735485, -0.008129882626235485, -0.009448242373764515, -0.01164550706744194, -0.00966796837747097, -0.008129882626235485, -0.010327148251235485, -0.00527343712747097, -0.009008788503706455, -0.0006591796409338713, -0.0028564452659338713, -0.0046142577193677425, 0.0017578124534338713, 0.003735351376235485, 0.009008788503706455, 0.008349609561264515, 0.002636718563735485, 0.005932617001235485, 0.010107421316206455, 0.0024169920943677425, 0.01076660118997097, 0.012524413876235485, 0.007910155691206455, 0.00439453125, 0.0057128905318677425, 0.0068115233443677425, 0.00439453125, -0.0013183592818677425, 0.0017578124534338713, -0.002197265625, -0.0046142577193677425, -0.0004394531133584678, 0.005053710658103228, 0.0004394531133584678, -0.0032958984375, -0.001977538922801614, -0.001977538922801614, 0.00439453125, -0.0002197265566792339 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.6667)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.001538085867650807, -0.001538085867650807, 0.0028564452659338713, 0.0046142577193677425, 0.0004394531133584678, 0.002197265625, 0.0054931640625, -0.0006591796409338713, 0.0, -0.0002197265566792339, 0.008129882626235485, 0.0076904296875, 0.0032958984375, 0.00856933556497097, 0.006591796875, 0.009448242373764515, 0.00747070275247097, 0.0087890625, 0.004833984188735485, 0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.005053710658103228, -0.0008789062267169356, -0.003735351376235485, -0.008129882626235485, -0.0098876953125, -0.006591796875, -0.007031249813735485, -0.009008788503706455, -0.0120849609375, -0.010327148251235485, -0.007250976283103228, -0.011206054128706455, -0.0068115233443677425, -0.0046142577193677425, 0.0013183592818677425, 0.0041748047806322575, 0.0068115233443677425, 0.006591796875, 0.0057128905318677425, 0.01076660118997097, 0.01384277269244194, 0.014501952566206455, 0.02263183519244194, 0.0208740234375, 0.02351074106991291, 0.01889648474752903, 0.01582031138241291, 0.01186523400247097, 0.01494140550494194, 0.005932617001235485, 0.0076904296875, -0.0010986328125, -0.00637206993997097, -0.01054687425494194, -0.003955077845603228, -0.01735839806497097, -0.01494140550494194, -0.015380859375, -0.01955566368997097, -0.01735839806497097, -0.02482910081744194, -0.01735839806497097, -0.02285156212747097, -0.01625976525247097, -0.010327148251235485, -0.005932617001235485, -0.0028564452659338713, 0.006152343470603228, 0.002197265625, 0.015600585378706455, 0.01779785193502903, 0.02548827975988388, 0.02263183519244194, 0.0274658203125, 0.02241210825741291, 0.03449707105755806, 0.03010253794491291, 0.03208007663488388, 0.02702636644244194, 0.0208740234375, 0.01801757700741291, 0.01296386681497097, 0.0087890625, 0.006591796875, -0.006591796875, -0.00527343712747097, -0.017578125, -0.015600585378706455, -0.0263671875, -0.02351074106991291, -0.02988281100988388, -0.02988281100988388, -0.03515625, -0.028564453125, -0.02285156212747097, -0.01955566368997097, -0.01691894419491291, -0.01582031138241291, -0.005932617001235485, -0.0013183592818677425, 0.0046142577193677425, 0.01801757700741291, 0.02065429650247097, 0.02241210825741291, 0.03076171875, 0.03273925557732582, 0.03339843824505806, 0.037353515625, 0.03471679612994194, 0.03713378682732582, 0.03603515401482582, 0.02570800669491291, 0.02395019493997097, 0.01186523400247097, 0.010107421316206455, 0.0017578124534338713, -0.01076660118997097, -0.012304686941206455, -0.0208740234375, -0.02460937388241291, -0.03427734225988388, -0.03977050632238388, -0.04042968526482582, -0.03889160230755806, -0.04328612983226776, -0.0384521484375, -0.03361816331744194, -0.02922363206744194, -0.01845703087747097, -0.01296386681497097, -0.00527343712747097, 0.002636718563735485, 0.0142822265625, 0.013403319753706455, 0.02482910081744194, 0.02900390513241291, 0.03889160230755806, 0.03757324069738388, 0.04306640475988388, 0.04460449144244194, 0.04328612983226776, 0.04328612983226776, 0.0362548828125, 0.03537597507238388, 0.02680663950741291, 0.01779785193502903, 0.01406249962747097, 0.0028564452659338713, -0.005932617001235485, -0.02197265625, -0.02922363206744194, -0.02922363206744194, -0.03801269456744194, -0.03801269456744194, -0.04636230319738388, -0.04899902269244194, -0.04877929389476776, -0.0406494140625, -0.04218749701976776, -0.02834472618997097, -0.02768554538488388, -0.02263183519244194, -0.009228515438735485, 0.0010986328125, 0.01406249962747097, 0.02504882775247097, 0.03098144382238388, 0.03032226487994194, 0.03757324069738388, 0.04855956882238388, 0.05031738057732582, 0.05559081956744194, 0.05339355394244194, 0.04702148213982582, 0.04108886793255806, 0.03603515401482582, 0.03493652120232582, 0.02614746056497097, 0.0164794921875, 0.007031249813735485, -0.003076171735301614, -0.02043456956744194, -0.0263671875, -0.03647460788488388, -0.0406494140625, -0.04526367038488388, -0.04833984375, -0.04987792670726776, -0.0472412109375, -0.04482421651482582, -0.04020996019244194, -0.03317870944738388, -0.03339843824505806, -0.015380859375, -0.009448242373764515, -0.0004394531133584678, 0.006591796875, 0.02021484263241291, 0.02680663950741291, 0.03867187350988388, 0.04790038987994194, 0.0516357421875, 0.05361327901482582, 0.05449218675494194, 0.0516357421875, 0.04768066108226776, 0.04108886793255806, 0.03999023512005806, 0.02944335900247097, 0.017578125, 0.008129882626235485, -0.0010986328125, -0.003076171735301614, -0.01735839806497097, -0.02900390513241291, -0.03691406175494194, -0.04438476264476776, -0.04768066108226776, -0.05207519233226776, -0.05097655951976776, -0.04636230319738388, -0.046142578125, -0.04438476264476776, -0.03515625, -0.0263671875, -0.02263183519244194, -0.014501952566206455, 0.0028564452659338713, 0.0057128905318677425, 0.02548827975988388, 0.0340576171875, 0.03955078125, 0.04526367038488388, 0.05031738057732582, 0.05668945237994194, 0.05756835639476776, 0.05075683444738388, 0.050537109375, 0.04812011495232582, 0.03669433668255806, 0.02944335900247097, 0.01933593675494194, 0.013623046688735485, 0.00856933556497097, -0.00856933556497097, -0.01406249962747097, -0.03054199181497097, -0.03229980543255806, -0.04702148213982582, -0.0494384765625, -0.05515136569738388, -0.05229492112994194, -0.04987792670726776, -0.04460449144244194, -0.04438476264476776, -0.03691406175494194, -0.028564453125, -0.02021484263241291, -0.010327148251235485, 0.0010986328125, 0.0098876953125, 0.01955566368997097, 0.03120117075741291, 0.03669433668255806, 0.03955078125, 0.04768066108226776, 0.05185546725988388, 0.05712890625, 0.05009765550494194, 0.0472412109375, 0.0428466796875, 0.03757324069738388, 0.02614746056497097, 0.01713867112994194, 0.0164794921875, 0.001977538922801614, -0.0057128905318677425, -0.015600585378706455, -0.02329101413488388, -0.03427734225988388, -0.04790038987994194, -0.04768066108226776, -0.05185546725988388, -0.04833984375, -0.04526367038488388, -0.05031738057732582, -0.04460449144244194, -0.03251953050494194, -0.02680663950741291, -0.02219238132238388, -0.01384277269244194, 0.001538085867650807, 0.010107421316206455, 0.015600585378706455, 0.02263183519244194, 0.03076171875, 0.03713378682732582, 0.04987792670726776, 0.04790038987994194, 0.04658202826976776, 0.05449218675494194, 0.0472412109375, 0.04350585862994194, 0.0340576171875, 0.03317870944738388, 0.02197265625, 0.01274413987994194, 0.003955077845603228, -0.012304686941206455, -0.01955566368997097, -0.02460937388241291, -0.0362548828125, -0.03427734225988388, -0.0384521484375, -0.041748046875, -0.04702148213982582, -0.04240722581744194, -0.0428466796875, -0.03999023512005806, -0.02900390513241291, -0.02065429650247097, -0.01823730394244194, -0.0087890625, -0.002636718563735485, 0.007250976283103228, 0.02109374850988388, 0.03054199181497097, 0.03493652120232582, 0.03339843824505806, 0.041748046875, 0.04372558370232582, 0.04218749701976776, 0.0439453125, 0.046142578125, 0.03229980543255806, 0.03339843824505806, 0.03010253794491291, 0.013623046688735485, 0.01669921912252903, 0.0024169920943677425, -0.0008789062267169356, -0.01296386681497097, -0.024169921875, -0.02351074106991291, -0.0318603515625, -0.037353515625, -0.03669433668255806, -0.037353515625, -0.04086913913488388, -0.03713378682732582, -0.02988281100988388, -0.02724609337747097, -0.0252685546875, -0.014501952566206455, -0.0010986328125, -0.0008789062267169356, 0.010327148251235485, 0.01604003831744194, 0.01669921912252903, 0.0252685546875, 0.03054199181497097, 0.03911132737994194, 0.03559570387005806, 0.03691406175494194, 0.03559570387005806, 0.03757324069738388, 0.02812499925494194, 0.02241210825741291, 0.02438964694738388, 0.01384277269244194, 0.0054931640625, 0.00637206993997097, -0.0004394531133584678, -0.014501952566206455, -0.01625976525247097, -0.0230712890625, -0.02241210825741291, -0.03032226487994194, -0.03120117075741291, -0.03164062276482582, -0.02592773362994194, -0.02988281100988388, -0.02504882775247097, -0.0186767578125, -0.01164550706744194, -0.0120849609375, -0.0098876953125, -0.0032958984375, 0.0098876953125, 0.010986328125, 0.01186523400247097, 0.02329101413488388, 0.0208740234375, 0.02285156212747097, 0.0252685546875, 0.02944335900247097, 0.02812499925494194, 0.02373046800494194, 0.02109374850988388, 0.01604003831744194, 0.01296386681497097, 0.0076904296875, 0.003076171735301614, 0.0013183592818677425, -0.0054931640625, -0.0046142577193677425, -0.006152343470603228, -0.01318359375, -0.0164794921875, -0.02351074106991291, -0.02329101413488388, -0.02131347544491291, -0.02285156212747097, -0.01889648474752903, -0.01823730394244194, -0.01494140550494194, -0.0098876953125, -0.00856933556497097, -0.0006591796409338713, -0.0035156249068677425, 0.0028564452659338713, 0.002636718563735485, 0.006152343470603228, 0.01604003831744194, 0.0098876953125, 0.02043456956744194, 0.02065429650247097, 0.01889648474752903, 0.01933593675494194, 0.01735839806497097, 0.01889648474752903, 0.01406249962747097, 0.009008788503706455, 0.00527343712747097, 0.0024169920943677425, 0.005053710658103228, 0.0013183592818677425, -0.007031249813735485, -0.0054931640625, -0.007031249813735485, -0.010327148251235485, -0.0098876953125, -0.01054687425494194, -0.01186523400247097, -0.011425781063735485, -0.00747070275247097, -0.010327148251235485, -0.0068115233443677425, -0.00439453125, -0.003955077845603228, -0.003955077845603228, -0.0004394531133584678, 0.0035156249068677425, -0.0008789062267169356, 0.0041748047806322575, 0.007250976283103228, 0.0076904296875, 0.0032958984375, 0.00747070275247097, 0.00856933556497097, 0.006152343470603228, 0.0076904296875, 0.0068115233443677425, 0.00439453125, 0.002197265625, -0.0017578124534338713, 0.0, 0.0068115233443677425, -0.0041748047806322575, 0.0035156249068677425, 0.0035156249068677425, -0.0008789062267169356, -0.001538085867650807, -0.003735351376235485, -0.0002197265566792339, 0.002636718563735485, -0.0032958984375, 0.002636718563735485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.7778)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.0, -0.001977538922801614, 0.002636718563735485, -0.0004394531133584678, -0.002636718563735485, -0.002636718563735485, 0.0041748047806322575, -0.0004394531133584678, 0.0017578124534338713, 0.0076904296875, 0.007250976283103228, 0.0046142577193677425, 0.0041748047806322575, 0.0076904296875, 0.00637206993997097, 0.003955077845603228, 0.0041748047806322575, 0.002197265625, 0.0006591796409338713, 0.0057128905318677425, -0.0008789062267169356, -0.0010986328125, 0.002197265625, 0.0032958984375, -0.005053710658103228, -0.0057128905318677425, -0.006152343470603228, -0.004833984188735485, -0.01406249962747097, -0.014721679501235485, -0.01516113243997097, -0.0142822265625, -0.010327148251235485, -0.008349609561264515, -0.007031249813735485, -0.007250976283103228, 0.0024169920943677425, 0.003955077845603228, 0.0046142577193677425, 0.007910155691206455, 0.01296386681497097, 0.008349609561264515, 0.010327148251235485, 0.01779785193502903, 0.015600585378706455, 0.0164794921875, 0.01669921912252903, 0.013403319753706455, 0.013403319753706455, 0.009448242373764515, 0.01582031138241291, 0.01318359375, 0.004833984188735485, 0.0046142577193677425, -0.004833984188735485, -0.002197265625, -0.012524413876235485, -0.01801757700741291, -0.01933593675494194, -0.02065429650247097, -0.015380859375, -0.01933593675494194, -0.0252685546875, -0.02021484263241291, -0.015380859375, -0.0120849609375, -0.015600585378706455, -0.008129882626235485, -0.006591796875, 0.003735351376235485, 0.0032958984375, 0.005932617001235485, 0.01604003831744194, 0.0164794921875, 0.02043456956744194, 0.02592773362994194, 0.03098144382238388, 0.02834472618997097, 0.03098144382238388, 0.02878417819738388, 0.02219238132238388, 0.01955566368997097, 0.014721679501235485, 0.013623046688735485, 0.005932617001235485, 0.00439453125, -0.002197265625, -0.01296386681497097, -0.017578125, -0.02065429650247097, -0.02988281100988388, -0.02900390513241291, -0.02878417819738388, -0.03164062276482582, -0.03647460788488388, -0.03208007663488388, -0.0274658203125, -0.02658691257238388, -0.01735839806497097, -0.014501952566206455, -0.01076660118997097, -0.0010986328125, 0.009228515438735485, 0.015380859375, 0.01691894419491291, 0.02329101413488388, 0.02658691257238388, 0.03867187350988388, 0.04042968526482582, 0.0340576171875, 0.03955078125, 0.03383788838982582, 0.03779296949505806, 0.02922363206744194, 0.01955566368997097, 0.01406249962747097, 0.01384277269244194, 0.0004394531133584678, -0.004833984188735485, -0.013403319753706455, -0.0208740234375, -0.02460937388241291, -0.03493652120232582, -0.04042968526482582, -0.03889160230755806, -0.0428466796875, -0.041748046875, -0.03493652120232582, -0.03801269456744194, -0.03317870944738388, -0.02834472618997097, -0.013403319753706455, -0.0041748047806322575, 0.003735351376235485, 0.009228515438735485, 0.01604003831744194, 0.02548827975988388, 0.03010253794491291, 0.03164062276482582, 0.04240722581744194, 0.04108886793255806, 0.04592284932732582, 0.04020996019244194, 0.04196777194738388, 0.03713378682732582, 0.03537597507238388, 0.0296630859375, 0.015600585378706455, 0.012304686941206455, 0.006591796875, -0.01054687425494194, -0.010327148251235485, -0.02790527231991291, -0.03647460788488388, -0.04042968526482582, -0.04460449144244194, -0.04790038987994194, -0.04812011495232582, -0.04416503757238388, -0.046142578125, -0.04130859300494194, -0.02988281100988388, -0.02329101413488388, -0.01691894419491291, -0.012524413876235485, -0.001538085867650807, 0.007031249813735485, 0.014721679501235485, 0.02570800669491291, 0.03273925557732582, 0.04020996019244194, 0.05075683444738388, 0.0516357421875, 0.05075683444738388, 0.04548339545726776, 0.04680175706744194, 0.03933105245232582, 0.03779296949505806, 0.03032226487994194, 0.01955566368997097, 0.010327148251235485, -0.0028564452659338713, -0.0013183592818677425, -0.019775390625, -0.0263671875, -0.03251953050494194, -0.04152831807732582, -0.04350585862994194, -0.05119628831744194, -0.05207519233226776, -0.05141601338982582, -0.04262695088982582, -0.0450439453125, -0.04086913913488388, -0.02548827975988388, -0.017578125, -0.012304686941206455, -0.0002197265566792339, 0.013623046688735485, 0.01889648474752903, 0.02768554538488388, 0.03955078125, 0.04680175706744194, 0.05471191182732582, 0.05515136569738388, 0.050537109375, 0.0560302734375, 0.05141601338982582, 0.05141601338982582, 0.04086913913488388, 0.02988281100988388, 0.01911620981991291, 0.01076660118997097, 0.004833984188735485, -0.006591796875, -0.0208740234375, -0.02724609337747097, -0.03955078125, -0.04438476264476776, -0.04438476264476776, -0.04592284932732582, -0.05800781026482582, -0.052734375, -0.05031738057732582, -0.04130859300494194, -0.03823241963982582, -0.0296630859375, -0.02460937388241291, -0.00637206993997097, 0.0002197265566792339, 0.00637206993997097, 0.02219238132238388, 0.0340576171875, 0.03823241963982582, 0.04416503757238388, 0.04812011495232582, 0.05119628831744194, 0.05251464620232582, 0.04965820163488388, 0.05339355394244194, 0.04790038987994194, 0.041748046875, 0.03691406175494194, 0.02570800669491291, 0.01625976525247097, -0.002197265625, -0.004833984188735485, -0.01713867112994194, -0.02900390513241291, -0.03977050632238388, -0.04020996019244194, -0.05009765550494194, -0.05734863132238388, -0.054931640625, -0.05251464620232582, -0.05449218675494194, -0.04855956882238388, -0.03933105245232582, -0.03339843824505806, -0.01625976525247097, -0.012524413876235485, 0.0013183592818677425, 0.00856933556497097, 0.0164794921875, 0.03120117075741291, 0.03427734225988388, 0.04372558370232582, 0.05295410007238388, 0.052734375, 0.05405273288488388, 0.04833984375, 0.05559081956744194, 0.04746093600988388, 0.03955078125, 0.032958984375, 0.024169921875, 0.009008788503706455, 0.002197265625, -0.00747070275247097, -0.02373046800494194, -0.0230712890625, -0.03427734225988388, -0.037353515625, -0.04218749701976776, -0.05031738057732582, -0.04899902269244194, -0.05515136569738388, -0.05185546725988388, -0.0406494140625, -0.03977050632238388, -0.03339843824505806, -0.01933593675494194, -0.010327148251235485, -0.0013183592818677425, 0.010327148251235485, 0.02175292931497097, 0.0252685546875, 0.03229980543255806, 0.04328612983226776, 0.0516357421875, 0.04855956882238388, 0.04746093600988388, 0.04526367038488388, 0.04548339545726776, 0.04130859300494194, 0.03142089769244194, 0.03383788838982582, 0.01911620981991291, 0.01164550706744194, -0.0004394531133584678, -0.007910155691206455, -0.013403319753706455, -0.02131347544491291, -0.03537597507238388, -0.03933105245232582, -0.0362548828125, -0.04680175706744194, -0.04812011495232582, -0.04526367038488388, -0.04328612983226776, -0.03977050632238388, -0.03339843824505806, -0.02944335900247097, -0.01713867112994194, -0.006591796875, -0.0017578124534338713, 0.010327148251235485, 0.01318359375, 0.02768554538488388, 0.03229980543255806, 0.03427734225988388, 0.0384521484375, 0.04833984375, 0.04746093600988388, 0.04636230319738388, 0.0406494140625, 0.041748046875, 0.03229980543255806, 0.02197265625, 0.01713867112994194, 0.015380859375, 0.001977538922801614, -0.0041748047806322575, -0.014501952566206455, -0.01845703087747097, -0.0274658203125, -0.03471679612994194, -0.03779296949505806, -0.04152831807732582, -0.03603515401482582, -0.03339843824505806, -0.03647460788488388, -0.02922363206744194, -0.0274658203125, -0.01801757700741291, -0.01823730394244194, -0.011425781063735485, 0.004833984188735485, 0.0054931640625, 0.01186523400247097, 0.0252685546875, 0.02768554538488388, 0.028564453125, 0.0340576171875, 0.0340576171875, 0.0362548828125, 0.03449707105755806, 0.03559570387005806, 0.03076171875, 0.02900390513241291, 0.0263671875, 0.01076660118997097, 0.0068115233443677425, -0.0004394531133584678, 0.0004394531133584678, -0.01076660118997097, -0.014501952566206455, -0.02395019493997097, -0.02109374850988388, -0.0230712890625, -0.0340576171875, -0.03361816331744194, -0.02834472618997097, -0.02658691257238388, -0.02109374850988388, -0.02131347544491291, -0.02021484263241291, -0.01318359375, -0.0032958984375, 0.0008789062267169356, 0.009448242373764515, 0.01516113243997097, 0.01296386681497097, 0.01801757700741291, 0.0252685546875, 0.0274658203125, 0.02504882775247097, 0.03142089769244194, 0.02460937388241291, 0.02834472618997097, 0.01889648474752903, 0.02021484263241291, 0.01186523400247097, 0.01604003831744194, 0.008349609561264515, -0.001977538922801614, -0.0010986328125, -0.008349609561264515, -0.0068115233443677425, -0.015600585378706455, -0.0164794921875, -0.02329101413488388, -0.0186767578125, -0.02153320237994194, -0.02351074106991291, -0.01406249962747097, -0.01186523400247097, -0.01494140550494194, -0.015600585378706455, -0.00747070275247097, -0.003076171735301614, -0.0002197265566792339, 0.0006591796409338713, 0.0098876953125, 0.01186523400247097, 0.01274413987994194, 0.01713867112994194, 0.01406249962747097, 0.01384277269244194, 0.014721679501235485, 0.01406249962747097, 0.01911620981991291, 0.010327148251235485, 0.012304686941206455, 0.0076904296875, 0.0046142577193677425, 0.010107421316206455, 0.0035156249068677425, -0.0028564452659338713, -0.005932617001235485, -0.0057128905318677425, -0.009448242373764515, -0.01296386681497097, -0.010107421316206455, -0.007250976283103228, -0.01274413987994194, -0.0041748047806322575, -0.008349609561264515, -0.009228515438735485, -0.003955077845603228, -0.0010986328125, 0.003076171735301614, 0.0024169920943677425, -0.0002197265566792339, -0.0002197265566792339, 0.0057128905318677425, 0.0017578124534338713, 0.00747070275247097, 0.006152343470603228, 0.0035156249068677425, 0.00637206993997097, 0.003955077845603228, 0.0041748047806322575, 0.0010986328125, 0.0076904296875, 0.003735351376235485, -0.0010986328125, -0.0006591796409338713, 0.00527343712747097, 0.003735351376235485, 0.002197265625, -0.0006591796409338713, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, 0.0017578124534338713, 0.0006591796409338713, 0.0032958984375, 0.0041748047806322575, 0.0 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.8889)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.0024169920943677425, 0.002636718563735485, 0.002636718563735485, -0.0004394531133584678, 0.0008789062267169356, 0.0024169920943677425, 0.0, 0.005053710658103228, 0.00527343712747097, 0.006591796875, 0.00527343712747097, 0.006152343470603228, 0.007250976283103228, 0.0087890625, 0.006152343470603228, 0.007250976283103228, 0.009448242373764515, 0.005053710658103228, 0.00439453125, 0.0028564452659338713, -0.0006591796409338713, 0.0032958984375, 0.002636718563735485, -0.0028564452659338713, -0.0068115233443677425, -0.007910155691206455, -0.010986328125, -0.0142822265625, -0.00856933556497097, -0.00856933556497097, -0.006591796875, -0.012304686941206455, -0.015380859375, -0.0028564452659338713, -0.003076171735301614, -0.001977538922801614, 0.0024169920943677425, 0.004833984188735485, 0.0035156249068677425, 0.00439453125, 0.009008788503706455, 0.01296386681497097, 0.014721679501235485, 0.01955566368997097, 0.01823730394244194, 0.0164794921875, 0.01691894419491291, 0.02131347544491291, 0.02175292931497097, 0.012304686941206455, 0.01186523400247097, 0.007250976283103228, 0.006591796875, -0.0032958984375, -0.00439453125, -0.008129882626235485, -0.0142822265625, -0.014501952566206455, -0.015600585378706455, -0.017578125, -0.0208740234375, -0.0186767578125, -0.019775390625, -0.02263183519244194, -0.01823730394244194, -0.01296386681497097, -0.015600585378706455, -0.00637206993997097, -0.007910155691206455, 0.0041748047806322575, 0.00527343712747097, 0.00637206993997097, 0.017578125, 0.02241210825741291, 0.02351074106991291, 0.02592773362994194, 0.03098144382238388, 0.02834472618997097, 0.03010253794491291, 0.02944335900247097, 0.02175292931497097, 0.02395019493997097, 0.02263183519244194, 0.010986328125, 0.00856933556497097, -0.00439453125, -0.006591796875, -0.0098876953125, -0.02021484263241291, -0.02109374850988388, -0.02790527231991291, -0.02438964694738388, -0.03142089769244194, -0.02812499925494194, -0.0263671875, -0.03427734225988388, -0.03164062276482582, -0.019775390625, -0.01911620981991291, -0.008349609561264515, -0.012304686941206455, -0.0008789062267169356, 0.0032958984375, 0.0087890625, 0.01604003831744194, 0.02812499925494194, 0.03251953050494194, 0.03999023512005806, 0.03757324069738388, 0.03999023512005806, 0.0406494140625, 0.03933105245232582, 0.03273925557732582, 0.03427734225988388, 0.01999511756002903, 0.012524413876235485, 0.009008788503706455, 0.0087890625, -0.010327148251235485, -0.01274413987994194, -0.02219238132238388, -0.02768554538488388, -0.02922363206744194, -0.03823241963982582, -0.04240722581744194, -0.04350585862994194, -0.04042968526482582, -0.037353515625, -0.03208007663488388, -0.02548827975988388, -0.02482910081744194, -0.01384277269244194, -0.011206054128706455, 0.0006591796409338713, 0.009448242373764515, 0.01384277269244194, 0.02592773362994194, 0.02790527231991291, 0.04042968526482582, 0.04570312425494194, 0.04526367038488388, 0.04460449144244194, 0.04152831807732582, 0.04680175706744194, 0.0384521484375, 0.0296630859375, 0.02592773362994194, 0.02197265625, 0.00747070275247097, -0.001538085867650807, -0.0028564452659338713, -0.01955566368997097, -0.02065429650247097, -0.02834472618997097, -0.04108886793255806, -0.04152831807732582, -0.04658202826976776, -0.0428466796875, -0.04218749701976776, -0.04328612983226776, -0.03955078125, -0.02922363206744194, -0.02351074106991291, -0.0208740234375, -0.010986328125, -0.0004394531133584678, 0.014501952566206455, 0.02175292931497097, 0.02395019493997097, 0.03010253794491291, 0.03999023512005806, 0.0472412109375, 0.05229492112994194, 0.05471191182732582, 0.0516357421875, 0.04328612983226776, 0.03999023512005806, 0.03933105245232582, 0.02460937388241291, 0.02395019493997097, 0.0142822265625, 0.0006591796409338713, -0.0041748047806322575, -0.0208740234375, -0.02285156212747097, -0.032958984375, -0.04196777194738388, -0.03999023512005806, -0.0439453125, -0.04702148213982582, -0.05009765550494194, -0.04592284932732582, -0.03999023512005806, -0.03317870944738388, -0.03142089769244194, -0.01625976525247097, -0.012304686941206455, -0.0006591796409338713, 0.01625976525247097, 0.02131347544491291, 0.02878417819738388, 0.04350585862994194, 0.0439453125, 0.05339355394244194, 0.052734375, 0.05800781026482582, 0.050537109375, 0.04965820163488388, 0.04987792670726776, 0.04328612983226776, 0.02900390513241291, 0.0208740234375, 0.01625976525247097, -0.0008789062267169356, -0.01186523400247097, -0.0142822265625, -0.02285156212747097, -0.03427734225988388, -0.04306640475988388, -0.05141601338982582, -0.05229492112994194, -0.05317382514476776, -0.05471191182732582, -0.05009765550494194, -0.04636230319738388, -0.03999023512005806, -0.03054199181497097, -0.02351074106991291, -0.01625976525247097, -0.0002197265566792339, 0.01604003831744194, 0.02043456956744194, 0.0318603515625, 0.03867187350988388, 0.04460449144244194, 0.04987792670726776, 0.04921874776482582, 0.05559081956744194, 0.0494384765625, 0.05405273288488388, 0.0516357421875, 0.041748046875, 0.03383788838982582, 0.02263183519244194, 0.01669921912252903, 0.0017578124534338713, -0.010986328125, -0.02395019493997097, -0.03010253794491291, -0.0318603515625, -0.04108886793255806, -0.04526367038488388, -0.05031738057732582, -0.05207519233226776, -0.05185546725988388, -0.05339355394244194, -0.04042968526482582, -0.04020996019244194, -0.03010253794491291, -0.01735839806497097, -0.007910155691206455, 0.0013183592818677425, 0.00747070275247097, 0.01735839806497097, 0.03251953050494194, 0.03801269456744194, 0.04855956882238388, 0.04899902269244194, 0.05229492112994194, 0.05471191182732582, 0.04965820163488388, 0.04746093600988388, 0.04746093600988388, 0.03889160230755806, 0.03471679612994194, 0.01801757700741291, 0.0142822265625, 0.007031249813735485, -0.0057128905318677425, -0.01999511756002903, -0.02438964694738388, -0.03076171875, -0.04746093600988388, -0.04899902269244194, -0.0472412109375, -0.05361327901482582, -0.0450439453125, -0.04790038987994194, -0.0439453125, -0.03933105245232582, -0.02373046800494194, -0.01845703087747097, -0.0046142577193677425, 0.00439453125, 0.0087890625, 0.02482910081744194, 0.02702636644244194, 0.03537597507238388, 0.04438476264476776, 0.05339355394244194, 0.05207519233226776, 0.05712890625, 0.04790038987994194, 0.0516357421875, 0.03999023512005806, 0.03361816331744194, 0.02988281100988388, 0.02153320237994194, 0.01494140550494194, 0.003735351376235485, -0.00439453125, -0.0186767578125, -0.02065429650247097, -0.0252685546875, -0.0340576171875, -0.04460449144244194, -0.04812011495232582, -0.0406494140625, -0.041748046875, -0.04548339545726776, -0.03581542894244194, -0.03317870944738388, -0.02658691257238388, -0.02043456956744194, -0.01274413987994194, -0.0032958984375, 0.007910155691206455, 0.01625976525247097, 0.028564453125, 0.03559570387005806, 0.03977050632238388, 0.04438476264476776, 0.04262695088982582, 0.04130859300494194, 0.0384521484375, 0.03977050632238388, 0.03977050632238388, 0.03208007663488388, 0.02812499925494194, 0.0142822265625, 0.01076660118997097, 0.0024169920943677425, -0.0032958984375, -0.01076660118997097, -0.01845703087747097, -0.03076171875, -0.03691406175494194, -0.0318603515625, -0.03713378682732582, -0.03999023512005806, -0.03361816331744194, -0.02988281100988388, -0.0340576171875, -0.03142089769244194, -0.01889648474752903, -0.01318359375, -0.0046142577193677425, -0.005932617001235485, 0.006591796875, 0.01406249962747097, 0.01406249962747097, 0.03229980543255806, 0.02680663950741291, 0.03471679612994194, 0.04152831807732582, 0.03713378682732582, 0.03889160230755806, 0.03142089769244194, 0.03383788838982582, 0.02900390513241291, 0.01999511756002903, 0.01933593675494194, 0.010986328125, -0.0008789062267169356, -0.0032958984375, -0.008349609561264515, -0.013623046688735485, -0.01845703087747097, -0.02614746056497097, -0.02988281100988388, -0.02548827975988388, -0.02988281100988388, -0.02724609337747097, -0.03098144382238388, -0.02219238132238388, -0.017578125, -0.014721679501235485, -0.010107421316206455, 0.0008789062267169356, -0.0004394531133584678, 0.001538085867650807, 0.009448242373764515, 0.01999511756002903, 0.01669921912252903, 0.0263671875, 0.03054199181497097, 0.02570800669491291, 0.02614746056497097, 0.02768554538488388, 0.028564453125, 0.02592773362994194, 0.01625976525247097, 0.01999511756002903, 0.013623046688735485, 0.0041748047806322575, 0.002197265625, -0.00747070275247097, -0.0068115233443677425, -0.0098876953125, -0.01713867112994194, -0.02131347544491291, -0.02351074106991291, -0.01889648474752903, -0.02197265625, -0.014721679501235485, -0.01691894419491291, -0.01845703087747097, -0.010107421316206455, -0.00856933556497097, -0.0041748047806322575, 0.0010986328125, -0.0035156249068677425, 0.006591796875, 0.011206054128706455, 0.01516113243997097, 0.010327148251235485, 0.01889648474752903, 0.01735839806497097, 0.01669921912252903, 0.01406249962747097, 0.0164794921875, 0.01625976525247097, 0.01691894419491291, 0.012304686941206455, 0.0142822265625, 0.0120849609375, 0.00856933556497097, 0.00637206993997097, 0.001538085867650807, -0.0013183592818677425, -0.003955077845603228, -0.008129882626235485, -0.005932617001235485, -0.009008788503706455, -0.01406249962747097, -0.010107421316206455, -0.0068115233443677425, -0.0046142577193677425, -0.00527343712747097, -0.001538085867650807, -0.0054931640625, 0.0006591796409338713, -0.0017578124534338713, 0.0054931640625, -0.0024169920943677425, 0.006591796875, 0.002197265625, 0.002197265625, 0.002636718563735485, 0.005932617001235485, 0.010327148251235485, 0.01186523400247097, 0.005932617001235485, 0.002636718563735485, 0.0076904296875, 0.006152343470603228, 0.0024169920943677425, 0.0028564452659338713, 0.0013183592818677425, 0.0046142577193677425, 0.001977538922801614, 0.003076171735301614, 0.0008789062267169356, -0.0010986328125, 0.003076171735301614, 0.003735351376235485, -0.0002197265566792339, -0.001977538922801614, -0.0024169920943677425, 0.0002197265566792339 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 1)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.0013183592818677425, 0.003735351376235485, -0.0008789062267169356, 0.0032958984375, 0.003955077845603228, 0.0068115233443677425, 0.00637206993997097, 0.006152343470603228, 0.0057128905318677425, 0.0028564452659338713, 0.0032958984375, 0.008349609561264515, 0.0068115233443677425, 0.0098876953125, 0.005932617001235485, 0.009228515438735485, 0.011425781063735485, 0.00439453125, 0.00637206993997097, 0.002636718563735485, 0.0032958984375, 0.004833984188735485, -0.004833984188735485, -0.0057128905318677425, -0.008349609561264515, -0.0054931640625, -0.007910155691206455, -0.00747070275247097, -0.009448242373764515, -0.013403319753706455, -0.00966796837747097, -0.01076660118997097, -0.008129882626235485, -0.006152343470603228, -0.007031249813735485, -0.006591796875, 0.0006591796409338713, 0.003955077845603228, 0.0046142577193677425, 0.009448242373764515, 0.01274413987994194, 0.01582031138241291, 0.012304686941206455, 0.01406249962747097, 0.01274413987994194, 0.02153320237994194, 0.02263183519244194, 0.013623046688735485, 0.01911620981991291, 0.01713867112994194, 0.01318359375, 0.003955077845603228, 0.003076171735301614, -0.0004394531133584678, 0.0006591796409338713, -0.005053710658103228, -0.01274413987994194, -0.01691894419491291, -0.01691894419491291, -0.02153320237994194, -0.01735839806497097, -0.02175292931497097, -0.02285156212747097, -0.02482910081744194, -0.01889648474752903, -0.01889648474752903, -0.0098876953125, -0.010107421316206455, -0.00527343712747097, 0.004833984188735485, 0.007910155691206455, 0.00966796837747097, 0.017578125, 0.01823730394244194, 0.02197265625, 0.02658691257238388, 0.03076171875, 0.03273925557732582, 0.03317870944738388, 0.02724609337747097, 0.02702636644244194, 0.01735839806497097, 0.0208740234375, 0.01274413987994194, 0.01076660118997097, 0.0041748047806322575, -0.009008788503706455, -0.01296386681497097, -0.01384277269244194, -0.01955566368997097, -0.02329101413488388, -0.03208007663488388, -0.03493652120232582, -0.03581542894244194, -0.03339843824505806, -0.02922363206744194, -0.0230712890625, -0.02131347544491291, -0.01713867112994194, -0.01406249962747097, -0.010986328125, 0.0008789062267169356, 0.005932617001235485, 0.012524413876235485, 0.02197265625, 0.0263671875, 0.03010253794491291, 0.0362548828125, 0.03691406175494194, 0.04086913913488388, 0.03867187350988388, 0.03933105245232582, 0.0340576171875, 0.02329101413488388, 0.02395019493997097, 0.01779785193502903, 0.014501952566206455, 0.0057128905318677425, -0.0032958984375, -0.017578125, -0.01604003831744194, -0.02482910081744194, -0.02878417819738388, -0.03339843824505806, -0.03955078125, -0.03999023512005806, -0.03559570387005806, -0.03581542894244194, -0.03164062276482582, -0.02922363206744194, -0.02197265625, -0.014721679501235485, -0.009448242373764515, 0.0017578124534338713, 0.0087890625, 0.01911620981991291, 0.01911620981991291, 0.03120117075741291, 0.03999023512005806, 0.0428466796875, 0.04328612983226776, 0.04987792670726776, 0.04877929389476776, 0.03955078125, 0.03779296949505806, 0.03603515401482582, 0.02834472618997097, 0.01516113243997097, 0.0076904296875, -0.0008789062267169356, -0.00439453125, -0.013623046688735485, -0.02438964694738388, -0.032958984375, -0.041748046875, -0.046142578125, -0.04438476264476776, -0.04899902269244194, -0.04438476264476776, -0.0406494140625, -0.04350585862994194, -0.02922363206744194, -0.028564453125, -0.01582031138241291, -0.0120849609375, 0.0004394531133584678, 0.0142822265625, 0.019775390625, 0.02395019493997097, 0.0406494140625, 0.04108886793255806, 0.05207519233226776, 0.04877929389476776, 0.05668945237994194, 0.04680175706744194, 0.05009765550494194, 0.04306640475988388, 0.03955078125, 0.03273925557732582, 0.02285156212747097, 0.014501952566206455, -0.0008789062267169356, -0.0068115233443677425, -0.01735839806497097, -0.02482910081744194, -0.03889160230755806, -0.04460449144244194, -0.05075683444738388, -0.04987792670726776, -0.04812011495232582, -0.04768066108226776, -0.0494384765625, -0.0439453125, -0.03559570387005806, -0.0318603515625, -0.02043456956744194, -0.014721679501235485, -0.0008789062267169356, 0.013403319753706455, 0.02131347544491291, 0.03208007663488388, 0.03867187350988388, 0.04680175706744194, 0.04702148213982582, 0.0516357421875, 0.059326171875, 0.05800781026482582, 0.04833984375, 0.04328612983226776, 0.03427734225988388, 0.032958984375, 0.02153320237994194, 0.01296386681497097, 0.0, -0.013623046688735485, -0.01691894419491291, -0.02790527231991291, -0.037353515625, -0.04372558370232582, -0.04592284932732582, -0.05295410007238388, -0.05119628831744194, -0.05537109076976776, -0.046142578125, -0.0472412109375, -0.03691406175494194, -0.03471679612994194, -0.02460937388241291, -0.0076904296875, 0.0010986328125, 0.014721679501235485, 0.02021484263241291, 0.03010253794491291, 0.03867187350988388, 0.04218749701976776, 0.05075683444738388, 0.05734863132238388, 0.06020507588982582, 0.05295410007238388, 0.04987792670726776, 0.04152831807732582, 0.04416503757238388, 0.03251953050494194, 0.02504882775247097, 0.01318359375, 0.006591796875, -0.0054931640625, -0.02131347544491291, -0.02329101413488388, -0.0318603515625, -0.04658202826976776, -0.04877929389476776, -0.04987792670726776, -0.05559081956744194, -0.04899902269244194, -0.05295410007238388, -0.04306640475988388, -0.04130859300494194, -0.03076171875, -0.02329101413488388, -0.005932617001235485, 0.00439453125, 0.00966796837747097, 0.02043456956744194, 0.02395019493997097, 0.0340576171875, 0.04768066108226776, 0.04790038987994194, 0.05646972358226776, 0.05339355394244194, 0.059326171875, 0.04768066108226776, 0.04921874776482582, 0.04262695088982582, 0.03449707105755806, 0.0230712890625, 0.01406249962747097, 0.0068115233443677425, -0.0024169920943677425, -0.02219238132238388, -0.03208007663488388, -0.03076171875, -0.03713378682732582, -0.04855956882238388, -0.04790038987994194, -0.05712890625, -0.05119628831744194, -0.05097655951976776, -0.04702148213982582, -0.03317870944738388, -0.028564453125, -0.01669921912252903, -0.007910155691206455, 0.0028564452659338713, 0.011425781063735485, 0.02263183519244194, 0.02702636644244194, 0.03339843824505806, 0.04196777194738388, 0.05009765550494194, 0.04899902269244194, 0.04987792670726776, 0.05075683444738388, 0.0439453125, 0.041748046875, 0.03515625, 0.024169921875, 0.024169921875, 0.014501952566206455, 0.0032958984375, -0.0041748047806322575, -0.01911620981991291, -0.02285156212747097, -0.0340576171875, -0.04042968526482582, -0.04460449144244194, -0.04372558370232582, -0.04790038987994194, -0.04899902269244194, -0.04130859300494194, -0.04086913913488388, -0.03515625, -0.02482910081744194, -0.01889648474752903, -0.011425781063735485, 0.0028564452659338713, 0.007250976283103228, 0.01889648474752903, 0.03032226487994194, 0.02878417819738388, 0.03757324069738388, 0.03955078125, 0.04152831807732582, 0.04130859300494194, 0.04262695088982582, 0.04218749701976776, 0.03273925557732582, 0.03208007663488388, 0.02219238132238388, 0.02153320237994194, 0.01054687425494194, 0.0032958984375, -0.0002197265566792339, -0.01494140550494194, -0.01933593675494194, -0.03208007663488388, -0.0296630859375, -0.03142089769244194, -0.03603515401482582, -0.04482421651482582, -0.04240722581744194, -0.03142089769244194, -0.03229980543255806, -0.02768554538488388, -0.0230712890625, -0.01669921912252903, -0.008349609561264515, -0.002636718563735485, 0.01296386681497097, 0.01735839806497097, 0.02175292931497097, 0.02614746056497097, 0.03251953050494194, 0.03229980543255806, 0.03054199181497097, 0.03977050632238388, 0.03603515401482582, 0.03779296949505806, 0.032958984375, 0.02460937388241291, 0.0230712890625, 0.01604003831744194, 0.007910155691206455, 0.00439453125, -0.0010986328125, -0.009008788503706455, -0.01604003831744194, -0.02219238132238388, -0.02482910081744194, -0.0274658203125, -0.03120117075741291, -0.03361816331744194, -0.028564453125, -0.0252685546875, -0.02241210825741291, -0.01691894419491291, -0.012304686941206455, -0.010986328125, -0.0024169920943677425, -0.00637206993997097, 0.005932617001235485, 0.0120849609375, 0.01582031138241291, 0.02131347544491291, 0.02219238132238388, 0.02900390513241291, 0.03010253794491291, 0.03054199181497097, 0.03098144382238388, 0.02373046800494194, 0.02592773362994194, 0.01845703087747097, 0.01933593675494194, 0.01318359375, 0.007910155691206455, 0.0068115233443677425, -0.0017578124534338713, -0.0046142577193677425, -0.014501952566206455, -0.01164550706744194, -0.02175292931497097, -0.01625976525247097, -0.02373046800494194, -0.0208740234375, -0.02373046800494194, -0.017578125, -0.01296386681497097, -0.01779785193502903, -0.0098876953125, -0.003735351376235485, 0.0, 0.0024169920943677425, 0.0, 0.004833984188735485, 0.007031249813735485, 0.012304686941206455, 0.01801757700741291, 0.01516113243997097, 0.014721679501235485, 0.017578125, 0.01823730394244194, 0.013403319753706455, 0.01406249962747097, 0.0068115233443677425, 0.0068115233443677425, 0.003955077845603228, 0.005932617001235485, 0.0035156249068677425, -0.0013183592818677425, -0.0028564452659338713, -0.007031249813735485, -0.0024169920943677425, -0.0098876953125, -0.008349609561264515, -0.00439453125, -0.00966796837747097, -0.013403319753706455, -0.005053710658103228, -0.0087890625, -0.0068115233443677425, -0.007031249813735485, 0.0010986328125, -0.001977538922801614, 0.0017578124534338713, 0.001538085867650807, 0.0046142577193677425, 0.00527343712747097, 0.0035156249068677425, 0.003735351376235485, 0.0068115233443677425, 0.0057128905318677425, 0.0041748047806322575, 0.00439453125, 0.00527343712747097, 0.00856933556497097, 0.002636718563735485, 0.003735351376235485, 0.006152343470603228, 0.006591796875, -0.002197265625, -0.0008789062267169356, 0.0004394531133584678, 0.002197265625, -0.003735351376235485, 0.0046142577193677425, -0.0004394531133584678, -0.0013183592818677425, -0.0024169920943677425, 0.0004394531133584678, 0.003076171735301614 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.0002197265566792339, -0.0032958984375, -0.001538085867650807, -0.002197265625, -0.003955077845603228, -0.0010986328125, -0.0006591796409338713, -0.0008789062267169356, -0.0006591796409338713, 0.0, -0.0013183592818677425, -0.0024169920943677425, -0.0002197265566792339, -0.001977538922801614, 0.0002197265566792339, -0.0035156249068677425, -0.0028564452659338713, -0.0028564452659338713, -0.0028564452659338713, -0.0010986328125, -0.0028564452659338713, -0.001977538922801614, -0.0024169920943677425, -0.0028564452659338713, 0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, 0.0002197265566792339, -0.0006591796409338713, -0.001977538922801614, -0.002636718563735485, -0.0004394531133584678, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0028564452659338713, -0.003076171735301614, -0.0004394531133584678, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, 0.0008789062267169356, -0.0004394531133584678, -0.0017578124534338713, -0.0024169920943677425, -0.0010986328125, -0.0024169920943677425, -0.00439453125, -0.0010986328125, -0.0004394531133584678, -0.0004394531133584678, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0024169920943677425, -0.002197265625, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, 0.0002197265566792339, -0.0006591796409338713, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.002636718563735485, -0.002197265625, -0.0010986328125, -0.0010986328125, 0.0002197265566792339, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.002636718563735485, -0.0008789062267169356, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.003076171735301614, -0.001977538922801614, -0.0006591796409338713, -0.0010986328125, -0.0006591796409338713, -0.0008789062267169356, -0.0024169920943677425, -0.0028564452659338713, -0.0024169920943677425, -0.002636718563735485, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.002636718563735485, -0.001538085867650807, -0.0002197265566792339, -0.0002197265566792339, -0.0013183592818677425, -0.0002197265566792339, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.003076171735301614, -0.002197265625, -0.0008789062267169356, -0.002197265625, -0.001977538922801614, 0.0008789062267169356, -0.0041748047806322575, -0.001538085867650807, -0.0002197265566792339, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.0008789062267169356, -0.0006591796409338713, -0.003735351376235485, -0.002636718563735485, -0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0006591796409338713, -0.003735351376235485, 0.0002197265566792339, 0.0002197265566792339, -0.0041748047806322575, -0.002636718563735485, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.0006591796409338713, -0.002197265625, -0.0035156249068677425, -0.001538085867650807, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.0032958984375, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.0004394531133584678, -0.001538085867650807, -0.0004394531133584678, -0.0017578124534338713, -0.0035156249068677425, -0.0004394531133584678, -0.001977538922801614, -0.003076171735301614, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.002197265625, -0.0013183592818677425, -0.0035156249068677425, -0.0028564452659338713, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.0006591796409338713, -0.002636718563735485, -0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.0024169920943677425, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.0004394531133584678, -0.001977538922801614, 0.0002197265566792339, -0.0028564452659338713, -0.0010986328125, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.1111)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.015380859375, -0.011425781063735485, -0.010107421316206455, -0.006152343470603228, -0.001977538922801614, -0.001977538922801614, 0.0, 0.003076171735301614, 0.0032958984375, 0.004833984188735485, 0.004833984188735485, 0.00747070275247097, 0.0068115233443677425, 0.0057128905318677425, 0.0057128905318677425, 0.0054931640625, 0.0046142577193677425, 0.003076171735301614, 0.0028564452659338713, 0.0010986328125, 0.001977538922801614, 0.0008789062267169356, 0.0002197265566792339, -0.001538085867650807, -0.002636718563735485, -0.0008789062267169356, -0.001977538922801614, -0.0035156249068677425, -0.0035156249068677425, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.0028564452659338713, -0.0002197265566792339, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0010986328125, -0.002197265625, -0.003076171735301614, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0004394531133584678, -0.002636718563735485, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.0013183592818677425, -0.0024169920943677425, -0.0008789062267169356, -0.0002197265566792339, -0.002197265625, -0.003076171735301614, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.0017578124534338713, -0.003076171735301614, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.0004394531133584678, -0.0024169920943677425, -0.0002197265566792339, -0.002197265625, -0.0013183592818677425, -0.0002197265566792339, -0.0002197265566792339, -0.0013183592818677425, -0.0032958984375, -0.0006591796409338713, -0.0008789062267169356, -0.0017578124534338713, -0.0041748047806322575, -0.0035156249068677425, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.0032958984375, -0.002197265625, -0.002636718563735485, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0028564452659338713, -0.0017578124534338713, -0.0028564452659338713, -0.0004394531133584678, -0.0028564452659338713, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.002636718563735485, -0.0010986328125, -0.0013183592818677425, 0.0, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.003735351376235485, -0.001538085867650807, -0.001538085867650807, -0.003076171735301614, -0.003735351376235485, -0.0035156249068677425, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.0032958984375, -0.002197265625, -0.001977538922801614, -0.003076171735301614, -0.0017578124534338713, -0.0028564452659338713, -0.0013183592818677425, 0.0002197265566792339, -0.0028564452659338713, -0.0035156249068677425, -0.0035156249068677425, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.0046142577193677425, -0.003076171735301614, -0.002636718563735485, -0.002197265625, -0.003076171735301614, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.0006591796409338713, -0.0032958984375, -0.0002197265566792339, -0.0024169920943677425, -0.0028564452659338713, -0.003076171735301614, -0.0032958984375, -0.0010986328125, -0.003735351376235485, -0.001538085867650807, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0004394531133584678, -0.001538085867650807, -0.0002197265566792339, -0.002636718563735485, -0.0017578124534338713, -0.002636718563735485, -0.0032958984375, -0.002636718563735485, -0.003735351376235485, -0.001538085867650807, -0.0024169920943677425, -0.0006591796409338713, -0.0024169920943677425, -0.002636718563735485, -0.0008789062267169356, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, -0.0006591796409338713, -0.002197265625, -0.0032958984375, -0.0006591796409338713, -0.0035156249068677425, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.0028564452659338713, -0.0041748047806322575, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.2222)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.02658691257238388, -0.02109374850988388, -0.015380859375, -0.01054687425494194, -0.006591796875, -0.0004394531133584678, 0.001538085867650807, 0.00747070275247097, 0.00856933556497097, 0.01186523400247097, 0.013403319753706455, 0.013623046688735485, 0.01604003831744194, 0.014501952566206455, 0.01318359375, 0.011206054128706455, 0.011425781063735485, 0.0098876953125, 0.00747070275247097, 0.0057128905318677425, 0.0041748047806322575, 0.003735351376235485, 0.0013183592818677425, -0.0004394531133584678, -0.0004394531133584678, -0.002197265625, -0.004833984188735485, -0.003735351376235485, -0.0024169920943677425, -0.0041748047806322575, -0.00439453125, -0.0024169920943677425, -0.002636718563735485, -0.003955077845603228, -0.0041748047806322575, -0.0024169920943677425, -0.0028564452659338713, -0.002197265625, -0.0028564452659338713, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.0002197265566792339, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.0010986328125, -0.0004394531133584678, 0.0, 0.0, -0.0006591796409338713, -0.0017578124534338713, -0.0024169920943677425, -0.0032958984375, -0.0006591796409338713, -0.0024169920943677425, -0.0024169920943677425, -0.0004394531133584678, -0.0010986328125, -0.0013183592818677425, -0.0028564452659338713, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, 0.0002197265566792339, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0002197265566792339, -0.0006591796409338713, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.001538085867650807, -0.0010986328125, -0.0013183592818677425, -0.001538085867650807, -0.0028564452659338713, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.003076171735301614, -0.003076171735301614, -0.002636718563735485, -0.0013183592818677425, -0.002636718563735485, -0.003076171735301614, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, -0.0024169920943677425, -0.0004394531133584678, -0.0006591796409338713, -0.0008789062267169356, -0.002636718563735485, -0.001977538922801614, -0.001977538922801614, -0.0024169920943677425, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.0028564452659338713, -0.0002197265566792339, -0.002197265625, -0.0024169920943677425, -0.002636718563735485, -0.0008789062267169356, -0.0004394531133584678, -0.0002197265566792339, -0.0004394531133584678, -0.001977538922801614, -0.0010986328125, -0.0028564452659338713, -0.0017578124534338713, -0.002636718563735485, -0.0013183592818677425, -0.0008789062267169356, -0.0032958984375, -0.0013183592818677425, -0.0028564452659338713, -0.001977538922801614, -0.0024169920943677425, -0.0028564452659338713, -0.001977538922801614, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.0013183592818677425, -0.003955077845603228, -0.0041748047806322575, -0.0006591796409338713, -0.0010986328125, -0.002636718563735485, -0.002636718563735485, -0.0032958984375, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0028564452659338713, -0.001977538922801614, -0.0004394531133584678, -0.002197265625, -0.0032958984375, -0.0013183592818677425, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.0028564452659338713, -0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.0004394531133584678, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.0032958984375, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0032958984375, -0.0010986328125, -0.001977538922801614, -0.0006591796409338713, -0.0035156249068677425, -0.0024169920943677425, -0.0032958984375, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.3333)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.04020996019244194, -0.03032226487994194, -0.0230712890625, -0.01494140550494194, -0.007910155691206455, 0.0004394531133584678, 0.003955077845603228, 0.012524413876235485, 0.01494140550494194, 0.01801757700741291, 0.02043456956744194, 0.02351074106991291, 0.02285156212747097, 0.02285156212747097, 0.02043456956744194, 0.01955566368997097, 0.01801757700741291, 0.01494140550494194, 0.012524413876235485, 0.01054687425494194, 0.007910155691206455, 0.004833984188735485, 0.0028564452659338713, 0.0002197265566792339, -0.0017578124534338713, -0.003076171735301614, -0.00439453125, -0.0028564452659338713, -0.0035156249068677425, -0.0041748047806322575, -0.004833984188735485, -0.002636718563735485, -0.001538085867650807, -0.001538085867650807, -0.0041748047806322575, -0.0032958984375, -0.0008789062267169356, -0.0032958984375, -0.0024169920943677425, -0.0013183592818677425, -0.0028564452659338713, -0.0010986328125, -0.0010986328125, -0.0006591796409338713, -0.001538085867650807, 0.0004394531133584678, -0.0010986328125, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.0002197265566792339, 0.0004394531133584678, -0.0002197265566792339, -0.0002197265566792339, -0.0002197265566792339, -0.0006591796409338713, 0.0002197265566792339, -0.0024169920943677425, -0.0024169920943677425, -0.001538085867650807, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.002636718563735485, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, 0.0008789062267169356, -0.0024169920943677425, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0024169920943677425, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.0013183592818677425, -0.001977538922801614, -0.003076171735301614, -0.002197265625, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.0006591796409338713, -0.0028564452659338713, -0.002197265625, 0.0, -0.001538085867650807, -0.0017578124534338713, -0.0002197265566792339, -0.0010986328125, -0.0010986328125, -0.003076171735301614, -0.0004394531133584678, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.003076171735301614, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.0004394531133584678, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, 0.0, -0.0006591796409338713, -0.001538085867650807, -0.002636718563735485, -0.002636718563735485, 0.0006591796409338713, -0.0017578124534338713, -0.002197265625, -0.0006591796409338713, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.002197265625, -0.003076171735301614, -0.0024169920943677425, 0.0, -0.001977538922801614, -0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.003076171735301614, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.0004394531133584678, -0.0017578124534338713, -0.0035156249068677425, -0.0024169920943677425, 0.0, 0.0, -0.0024169920943677425, -0.001977538922801614, -0.0024169920943677425, -0.0010986328125, -0.003076171735301614, -0.0017578124534338713, -0.0008789062267169356, -0.0008789062267169356, -0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.0008789062267169356, -0.0006591796409338713, -0.0028564452659338713, -0.0013183592818677425, -0.0002197265566792339, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, 0.0002197265566792339, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.0010986328125, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.002636718563735485, -0.0004394531133584678, -0.0010986328125, 0.0, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.002197265625, -0.002636718563735485, -0.002197265625, -0.003955077845603228, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.4444)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.0516357421875, -0.03999023512005806, -0.03032226487994194, -0.01845703087747097, -0.009228515438735485, 0.0004394531133584678, 0.007910155691206455, 0.01406249962747097, 0.01889648474752903, 0.02548827975988388, 0.02658691257238388, 0.03010253794491291, 0.03010253794491291, 0.02988281100988388, 0.0296630859375, 0.02658691257238388, 0.02460937388241291, 0.02021484263241291, 0.017578125, 0.0120849609375, 0.01164550706744194, 0.007250976283103228, 0.00527343712747097, 0.001977538922801614, -0.0008789062267169356, -0.0013183592818677425, -0.003955077845603228, -0.00439453125, -0.0057128905318677425, -0.003735351376235485, -0.003955077845603228, -0.003735351376235485, -0.0041748047806322575, -0.001977538922801614, -0.00439453125, -0.0028564452659338713, -0.001977538922801614, -0.0035156249068677425, -0.0035156249068677425, -0.001538085867650807, -0.0006591796409338713, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.0004394531133584678, 0.0010986328125, 0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, 0.0010986328125, -0.0004394531133584678, -0.0004394531133584678, 0.0002197265566792339, -0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, -0.0006591796409338713, 0.0, -0.001538085867650807, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.0017578124534338713, -0.0028564452659338713, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.001977538922801614, -0.0013183592818677425, -0.0004394531133584678, -0.0024169920943677425, -0.0032958984375, -0.0024169920943677425, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.002197265625, -0.0004394531133584678, -0.0004394531133584678, -0.002197265625, -0.0013183592818677425, -0.002197265625, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0032958984375, -0.0032958984375, -0.001977538922801614, -0.0017578124534338713, -0.0004394531133584678, -0.0013183592818677425, 0.0006591796409338713, 0.0002197265566792339, -0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.001538085867650807, -0.003076171735301614, -0.0004394531133584678, -0.001538085867650807, -0.0008789062267169356, -0.0028564452659338713, -0.0028564452659338713, -0.0032958984375, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, -0.0004394531133584678, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.0006591796409338713, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.0024169920943677425, -0.003735351376235485, -0.0004394531133584678, -0.0008789062267169356, -0.0008789062267169356, -0.002197265625, 0.0, -0.0008789062267169356, -0.0004394531133584678, 0.0004394531133584678, -0.0017578124534338713, -0.003076171735301614, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.0002197265566792339, -0.001977538922801614, -0.0032958984375, -0.0013183592818677425, -0.001977538922801614, -0.0024169920943677425, -0.003076171735301614, -0.0002197265566792339, -0.002636718563735485, -0.002197265625, -0.002197265625, -0.0004394531133584678, -0.001538085867650807, -0.0035156249068677425, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0013183592818677425, -0.0006591796409338713, -0.0017578124534338713, -0.003076171735301614, -0.0028564452659338713, -0.0017578124534338713, -0.0010986328125, -0.003076171735301614, -0.0017578124534338713, -0.001538085867650807, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.002636718563735485, -0.0010986328125, -0.002197265625, -0.0010986328125, -0.0010986328125, -0.003735351376235485, -0.001538085867650807, -0.0013183592818677425, -0.0010986328125, -0.0013183592818677425, -0.003076171735301614, -0.0028564452659338713, -0.0008789062267169356, -0.0035156249068677425, -0.0028564452659338713, -0.0002197265566792339, -0.002197265625, -0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0028564452659338713, -0.0028564452659338713, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.0002197265566792339, -0.0004394531133584678, -0.001538085867650807, -0.0013183592818677425, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.0013183592818677425, -0.003076171735301614, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.5556)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.06503906100988388, -0.04899902269244194, -0.03515625, -0.02373046800494194, -0.0120849609375, 0.001977538922801614, 0.009228515438735485, 0.01933593675494194, 0.02395019493997097, 0.03054199181497097, 0.03471679612994194, 0.03713378682732582, 0.03669433668255806, 0.03537597507238388, 0.03559570387005806, 0.03273925557732582, 0.03076171875, 0.02680663950741291, 0.02241210825741291, 0.01999511756002903, 0.014501952566206455, 0.00966796837747097, 0.0046142577193677425, 0.002197265625, 0.0008789062267169356, -0.003955077845603228, -0.0041748047806322575, -0.0057128905318677425, -0.006152343470603228, -0.0054931640625, -0.004833984188735485, -0.0041748047806322575, -0.00527343712747097, -0.0028564452659338713, -0.003735351376235485, -0.003735351376235485, -0.002636718563735485, -0.003955077845603228, -0.0035156249068677425, -0.002197265625, -0.0006591796409338713, -0.0004394531133584678, -0.0002197265566792339, 0.0006591796409338713, -0.0013183592818677425, -0.0004394531133584678, 0.0008789062267169356, -0.0002197265566792339, -0.0004394531133584678, 0.0004394531133584678, -0.0008789062267169356, -0.0006591796409338713, -0.0004394531133584678, 0.0010986328125, -0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, 0.0, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.002197265625, -0.0008789062267169356, -0.0010986328125, -0.001538085867650807, -0.0004394531133584678, -0.0028564452659338713, -0.0008789062267169356, -0.0002197265566792339, -0.0004394531133584678, -0.0004394531133584678, -0.0010986328125, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, 0.0002197265566792339, -0.0010986328125, -0.0004394531133584678, -0.0024169920943677425, -0.002636718563735485, -0.001538085867650807, -0.0002197265566792339, -0.001977538922801614, -0.0024169920943677425, -0.0028564452659338713, -0.001538085867650807, -0.003735351376235485, -0.0035156249068677425, -0.0017578124534338713, -0.003076171735301614, -0.0004394531133584678, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0004394531133584678, -0.0010986328125, 0.0008789062267169356, -0.0002197265566792339, -0.001977538922801614, -0.0028564452659338713, 0.0, -0.0008789062267169356, -0.002636718563735485, -0.0008789062267169356, -0.0013183592818677425, 0.0008789062267169356, -0.0008789062267169356, -0.0024169920943677425, -0.0004394531133584678, -0.001538085867650807, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, 0.0002197265566792339, -0.0004394531133584678, -0.0024169920943677425, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, -0.0024169920943677425, -0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.001538085867650807, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.0028564452659338713, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, 0.0, -0.0010986328125, -0.003076171735301614, -0.0004394531133584678, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0032958984375, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.0035156249068677425, -0.0024169920943677425, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.0013183592818677425, -0.0028564452659338713, -0.002197265625, -0.0032958984375, -0.0004394531133584678, -0.0006591796409338713, -0.0006591796409338713, -0.002197265625, -0.0006591796409338713, -0.003076171735301614, -0.0024169920943677425, -0.0013183592818677425, -0.0004394531133584678, -0.002197265625, -0.0006591796409338713, -0.002636718563735485, -0.0024169920943677425, -0.0032958984375, -0.0024169920943677425, -0.001538085867650807, -0.0017578124534338713, -0.0004394531133584678, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.0028564452659338713, -0.0002197265566792339, -0.0024169920943677425, -0.0024169920943677425, -0.001538085867650807, -0.0010986328125, -0.0002197265566792339, 0.0, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.0006591796409338713, -0.0035156249068677425, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.6667)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.076904296875, -0.05910644307732582, -0.04306640475988388, -0.02482910081744194, -0.012524413876235485, 0.0013183592818677425, 0.01274413987994194, 0.02285156212747097, 0.02988281100988388, 0.03801269456744194, 0.04042968526482582, 0.04526367038488388, 0.04526367038488388, 0.04592284932732582, 0.04482421651482582, 0.04262695088982582, 0.03603515401482582, 0.0318603515625, 0.0274658203125, 0.02373046800494194, 0.017578125, 0.01186523400247097, 0.006591796875, 0.0035156249068677425, -0.001538085867650807, -0.0028564452659338713, -0.0054931640625, -0.0068115233443677425, -0.0057128905318677425, -0.00637206993997097, -0.0068115233443677425, -0.005932617001235485, -0.0057128905318677425, -0.0041748047806322575, -0.003735351376235485, -0.002197265625, -0.0032958984375, -0.0032958984375, -0.0041748047806322575, -0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, 0.0006591796409338713, 0.0010986328125, 0.0013183592818677425, -0.001538085867650807, -0.0008789062267169356, -0.0008789062267169356, -0.0008789062267169356, 0.0, -0.001977538922801614, -0.001538085867650807, 0.0, -0.0013183592818677425, -0.0008789062267169356, -0.001977538922801614, -0.0002197265566792339, -0.0013183592818677425, -0.0035156249068677425, -0.002197265625, -0.0010986328125, -0.004833984188735485, -0.0004394531133584678, -0.0017578124534338713, -0.0024169920943677425, -0.0035156249068677425, -0.003735351376235485, -0.001977538922801614, -0.002636718563735485, -0.002636718563735485, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, 0.0, -0.002636718563735485, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.002636718563735485, -0.0008789062267169356, -0.002636718563735485, -0.0028564452659338713, -0.0028564452659338713, -0.002636718563735485, -0.001538085867650807, -0.0008789062267169356, -0.0006591796409338713, 0.0, -0.001538085867650807, -0.0010986328125, -0.002636718563735485, -0.0028564452659338713, -0.003076171735301614, 0.0, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.0032958984375, -0.001977538922801614, -0.002197265625, -0.001538085867650807, -0.0006591796409338713, -0.002636718563735485, -0.0024169920943677425, -0.0035156249068677425, -0.0035156249068677425, -0.003735351376235485, -0.001538085867650807, -0.002636718563735485, -0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, -0.002636718563735485, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.003076171735301614, -0.002636718563735485, -0.002636718563735485, -0.0028564452659338713, -0.002636718563735485, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.003735351376235485, -0.0024169920943677425, -0.002636718563735485, -0.001977538922801614, -0.003735351376235485, -0.003735351376235485, -0.002197265625, -0.002197265625, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0008789062267169356, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.003076171735301614, -0.0008789062267169356, -0.003076171735301614, -0.002197265625, -0.003076171735301614, -0.001977538922801614, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.0017578124534338713, -0.003076171735301614, -0.003076171735301614, -0.001538085867650807, -0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.003076171735301614, -0.0024169920943677425, -0.0017578124534338713, -0.003076171735301614, -0.002197265625, -0.002636718563735485, -0.003076171735301614, -0.002636718563735485, -0.001977538922801614, -0.003076171735301614, -0.002636718563735485, -0.0002197265566792339, -0.003076171735301614, 0.0, -0.001538085867650807, 0.0002197265566792339, -0.001977538922801614, -0.0008789062267169356, -0.002197265625, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, 0.0002197265566792339, -0.0010986328125, -0.001977538922801614, -0.0041748047806322575, -0.0024169920943677425, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.7778)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.09030761569738388, -0.0670166015625, -0.04855956882238388, -0.02944335900247097, -0.01494140550494194, 0.002636718563735485, 0.013403319753706455, 0.02614746056497097, 0.03427734225988388, 0.04482421651482582, 0.04855956882238388, 0.05405273288488388, 0.05471191182732582, 0.05471191182732582, 0.05141601338982582, 0.04899902269244194, 0.04240722581744194, 0.0362548828125, 0.03361816331744194, 0.02812499925494194, 0.02197265625, 0.015600585378706455, 0.010107421316206455, 0.002636718563735485, 0.0004394531133584678, -0.00439453125, -0.007031249813735485, -0.00747070275247097, -0.0087890625, -0.0057128905318677425, -0.007910155691206455, -0.005932617001235485, -0.005932617001235485, -0.007031249813735485, -0.005932617001235485, -0.0028564452659338713, -0.002636718563735485, -0.0041748047806322575, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, 0.0013183592818677425, 0.0006591796409338713, 0.0028564452659338713, 0.0008789062267169356, 0.0010986328125, -0.0002197265566792339, 0.0017578124534338713, 0.0, -0.0004394531133584678, 0.0, -0.0008789062267169356, -0.0017578124534338713, 0.0, 0.0006591796409338713, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, -0.001538085867650807, -0.0008789062267169356, -0.002197265625, -0.003076171735301614, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, -0.0008789062267169356, -0.0028564452659338713, -0.0008789062267169356, -0.0002197265566792339, -0.001977538922801614, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, 0.0, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0013183592818677425, -0.002636718563735485, -0.002636718563735485, -0.0008789062267169356, -0.0002197265566792339, -0.0010986328125, -0.0024169920943677425, -0.002636718563735485, -0.0010986328125, -0.0024169920943677425, -0.001977538922801614, -0.001538085867650807, -0.004833984188735485, -0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.0028564452659338713, -0.002197265625, 0.0002197265566792339, -0.0010986328125, -0.0006591796409338713, 0.0, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.0032958984375, -0.003076171735301614, -0.002197265625, -0.0028564452659338713, -0.0041748047806322575, -0.0024169920943677425, -0.0004394531133584678, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0024169920943677425, -0.003076171735301614, -0.0013183592818677425, -0.002636718563735485, -0.0024169920943677425, -0.002197265625, -0.0008789062267169356, 0.0002197265566792339, -0.002197265625, -0.003076171735301614, -0.002197265625, -0.0035156249068677425, -0.003076171735301614, -0.0013183592818677425, -0.0024169920943677425, -0.003735351376235485, -0.0024169920943677425, -0.0008789062267169356, -0.0010986328125, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, -0.0010986328125, -0.001538085867650807, -0.0024169920943677425, -0.0006591796409338713, -0.0024169920943677425, -0.001977538922801614, 0.0002197265566792339, -0.001538085867650807, -0.002197265625, -0.0002197265566792339, -0.0002197265566792339, -0.001977538922801614, -0.0035156249068677425, -0.0013183592818677425, -0.0035156249068677425, -0.0024169920943677425, -0.0006591796409338713, -0.003076171735301614, -0.003076171735301614, -0.0010986328125, -0.0004394531133584678, -0.0024169920943677425, -0.0017578124534338713, -0.0008789062267169356, -0.002636718563735485, -0.0008789062267169356, -0.001977538922801614, -0.0008789062267169356, -0.0004394531133584678, -0.001538085867650807, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.001977538922801614, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.0028564452659338713, -0.0035156249068677425, -0.003076171735301614, -0.0013183592818677425, -0.0006591796409338713, -0.002636718563735485, -0.0028564452659338713, -0.0017578124534338713, -0.0002197265566792339, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0002197265566792339, -0.0017578124534338713, -0.002197265625, -0.0013183592818677425, -0.001977538922801614, -0.0004394531133584678, -0.0013183592818677425, -0.0013183592818677425, -0.0008789062267169356, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.0004394531133584678, -0.0008789062267169356, -0.001977538922801614, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 0.8889)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.0999755859375, -0.07514648139476776, -0.05734863132238388, -0.03559570387005806, -0.0164794921875, 0.0054931640625, 0.01845703087747097, 0.03317870944738388, 0.03999023512005806, 0.05119628831744194, 0.05734863132238388, 0.06284179538488388, 0.06196288764476776, 0.06218261644244194, 0.0582275390625, 0.05559081956744194, 0.0516357421875, 0.04438476264476776, 0.0362548828125, 0.03120117075741291, 0.02395019493997097, 0.01713867112994194, 0.010327148251235485, 0.003735351376235485, 0.0004394531133584678, -0.0032958984375, -0.007250976283103228, -0.007250976283103228, -0.0076904296875, -0.007250976283103228, -0.00637206993997097, -0.00637206993997097, -0.0068115233443677425, -0.006152343470603228, -0.0041748047806322575, -0.0035156249068677425, -0.004833984188735485, -0.0017578124534338713, -0.003076171735301614, -0.0008789062267169356, -0.001538085867650807, -0.0004394531133584678, -0.0024169920943677425, 0.0017578124534338713, 0.0010986328125, -0.0002197265566792339, -0.0006591796409338713, 0.0010986328125, -0.0008789062267169356, 0.0028564452659338713, 0.0013183592818677425, 0.0010986328125, -0.001977538922801614, 0.0004394531133584678, 0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, 0.0, -0.0013183592818677425, -0.0004394531133584678, -0.0024169920943677425, -0.002636718563735485, -0.003735351376235485, -0.003076171735301614, -0.001977538922801614, -0.0017578124534338713, -0.002197265625, -0.002197265625, -0.0032958984375, -0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, -0.002197265625, -0.0017578124534338713, -0.002636718563735485, -0.0004394531133584678, -0.0024169920943677425, -0.0017578124534338713, -0.0035156249068677425, -0.001538085867650807, -0.001977538922801614, 0.0002197265566792339, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.0006591796409338713, -0.0035156249068677425, -0.003735351376235485, -0.002636718563735485, -0.001538085867650807, -0.0041748047806322575, -0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.0035156249068677425, -0.0024169920943677425, -0.002197265625, -0.0010986328125, -0.0024169920943677425, -0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, -0.0028564452659338713, -0.0028564452659338713, -0.003076171735301614, -0.001538085867650807, -0.002636718563735485, -0.0024169920943677425, -0.002636718563735485, -0.0035156249068677425, -0.003076171735301614, -0.002636718563735485, -0.0035156249068677425, -0.0010986328125, -0.0008789062267169356, -0.0006591796409338713, -0.0035156249068677425, -0.0035156249068677425, -0.0024169920943677425, -0.0008789062267169356, -0.0024169920943677425, -0.0008789062267169356, -0.002197265625, -0.0017578124534338713, -0.0028564452659338713, -0.0010986328125, -0.0032958984375, -0.0004394531133584678, -0.0004394531133584678, -0.002636718563735485, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.0028564452659338713, -0.003076171735301614, 0.0002197265566792339, -0.003076171735301614, -0.002197265625, -0.003076171735301614, -0.002636718563735485, 0.0, -0.0010986328125, -0.002636718563735485, -0.0008789062267169356, -0.003735351376235485, -0.0008789062267169356, -0.0010986328125, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.002197265625, -0.001538085867650807, -0.0035156249068677425, -0.0017578124534338713, -0.0032958984375, -0.0032958984375, -0.0028564452659338713, -0.0032958984375, -0.0017578124534338713, -0.0032958984375, -0.0028564452659338713, -0.0010986328125, -0.0010986328125, -0.0028564452659338713, -0.0028564452659338713, -0.0032958984375, -0.003076171735301614, -0.003076171735301614, -0.002636718563735485, -0.001977538922801614, -0.0028564452659338713, 0.0002197265566792339, -0.001538085867650807, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0028564452659338713, -0.0013183592818677425, -0.0004394531133584678, -0.002197265625, -0.0013183592818677425, -0.0028564452659338713, -0.001977538922801614, -0.002636718563735485, -0.0002197265566792339, -0.0008789062267169356, 0.0004394531133584678, -0.0035156249068677425, -0.0006591796409338713, -0.002197265625, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.002636718563735485, -0.001977538922801614, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for (x180_pulse_amplitudes, 1)", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.11228027194738388, -0.085693359375, -0.0604248046875, -0.03691406175494194, -0.017578125, 0.00527343712747097, 0.01911620981991291, 0.03559570387005806, 0.04768066108226776, 0.05976562201976776, 0.06437987834215164, 0.06877440959215164, 0.0703125, 0.0703125, 0.0670166015625, 0.06328124552965164, 0.05712890625, 0.050537109375, 0.04372558370232582, 0.03581542894244194, 0.02790527231991291, 0.0186767578125, 0.01186523400247097, 0.00527343712747097, -0.0002197265566792339, -0.003735351376235485, -0.007910155691206455, -0.008129882626235485, -0.0087890625, -0.008349609561264515, -0.00966796837747097, -0.0076904296875, -0.006152343470603228, -0.007031249813735485, -0.005932617001235485, -0.00439453125, -0.003955077845603228, -0.002197265625, -0.0024169920943677425, -0.0004394531133584678, -0.0004394531133584678, -0.001538085867650807, -0.0004394531133584678, 0.0002197265566792339, 0.0002197265566792339, 0.0002197265566792339, 0.0010986328125, 0.0006591796409338713, 0.002197265625, 0.0017578124534338713, 0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, 0.0013183592818677425, -0.001538085867650807, 0.0008789062267169356, 0.0002197265566792339, -0.0013183592818677425, -0.001538085867650807, -0.0002197265566792339, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.002636718563735485, -0.002197265625, -0.0024169920943677425, -0.003735351376235485, -0.0035156249068677425, -0.0004394531133584678, -0.001977538922801614, -0.003955077845603228, -0.002197265625, -0.0017578124534338713, -0.002636718563735485, -0.0024169920943677425, -0.0013183592818677425, -0.0004394531133584678, -0.002636718563735485, -0.002636718563735485, -0.0017578124534338713, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.001977538922801614, -0.0024169920943677425, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.001977538922801614, -0.0028564452659338713, -0.0032958984375, -0.0032958984375, -0.0035156249068677425, -0.003076171735301614, -0.0028564452659338713, -0.0017578124534338713, -0.0028564452659338713, -0.0035156249068677425, -0.002636718563735485, -0.0013183592818677425, -0.001977538922801614, -0.002197265625, -0.0010986328125, -0.0017578124534338713, -0.0017578124534338713, -0.001977538922801614, -0.001538085867650807, -0.0024169920943677425, -0.0008789062267169356, -0.001977538922801614, -0.0010986328125, -0.0041748047806322575, -0.0013183592818677425, 0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.001977538922801614, -0.0017578124534338713, -0.0032958984375, -0.0032958984375, -0.001977538922801614, -0.001977538922801614, -0.002636718563735485, -0.0013183592818677425, -0.0008789062267169356, -0.0035156249068677425, -0.0017578124534338713, -0.0013183592818677425, -0.003076171735301614, -0.003076171735301614, -0.003076171735301614, -0.0032958984375, -0.0008789062267169356, -0.001538085867650807, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.0028564452659338713, -0.003735351376235485, -0.0024169920943677425, -0.001538085867650807, -0.001977538922801614, -0.001977538922801614, -0.001538085867650807, -0.0013183592818677425, -0.0024169920943677425, -0.0004394531133584678, -0.0010986328125, -0.00439453125, -0.0032958984375, -0.0028564452659338713, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, -0.0010986328125, -0.002636718563735485, -0.0046142577193677425, -0.002197265625, -0.0041748047806322575, -0.0024169920943677425, -0.0010986328125, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.0028564452659338713, -0.003076171735301614, -0.001538085867650807, -0.0013183592818677425, -0.001977538922801614, -0.001977538922801614, -0.00439453125, -0.002636718563735485, -0.0028564452659338713, -0.002197265625, -0.001977538922801614, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0024169920943677425, -0.001977538922801614, -0.003076171735301614, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, -0.002197265625, -0.0006591796409338713, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.0032958984375, -0.0010986328125, -0.0028564452659338713, -0.0013183592818677425, -0.002636718563735485, -0.001538085867650807, -0.002636718563735485, -0.002197265625, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "qudits, labels: (0,)", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 16 }, "showarrow": false, "text": "ancilla, labels: (1,)", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 0.425, "yanchor": "bottom", "yref": "paper" } ], "height": 1100, "legend": { "groupclick": "toggleitem" }, "template": { "data": { "bar": [ { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" } ], "scatter": [ { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" } ], "violin": [ { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" } ] }, "layout": { "annotationdefaults": { "font": { "size": 12 } }, "autotypenumbers": "strict", "hoverlabel": { "bgcolor": "white", "font": { "family": "Rockwell", "size": 14 } }, "hovermode": "x unified", "legend": { "bgcolor": "white", "bordercolor": "Black", "borderwidth": 1, "font": { "family": "Rockwell" } }, "xaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true }, "yaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true } } }, "width": 900, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "matches": "x2", "showticklabels": true, "title": { "text": "Time (s)" } }, "xaxis2": { "anchor": "y2", "domain": [ 0.0, 1.0 ], "showticklabels": true, "title": { "text": "Time (s)" } }, "yaxis": { "anchor": "x", "domain": [ 0.575, 1.0 ], "title": { "text": "Fractional Voltage" } }, "yaxis2": { "anchor": "x2", "domain": [ 0.0, 0.425 ], "title": { "text": "Fractional Voltage" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "rabi_experiment.plot_trace()" ] }, { "cell_type": "raw", "id": "1f458ca2", "metadata": { "lines_to_next_cell": 2, "raw_mimetype": "text/restructuredtext" }, "source": [ "Here we can see the control pulse with our varying amplitudes. Note that our local\n", "oscillator (LO) frequency was set to 5 GHz for this example.\n", "\n", "Fitting and calibration workflow\n", "--------------------------------\n", "\n", "Let's walk through how to extract the desired drive amplitude from the Rabi experiment\n", "and how to update the corresponding variables in our calibration set. For this\n", "example, we load in an experiment with simulated data that we imported at the\n", "beginning of the file:" ] }, { "cell_type": "code", "execution_count": 12, "id": "b79d9b26", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:55.135945Z", "iopub.status.busy": "2025-10-02T01:26:55.135735Z", "iopub.status.idle": "2025-10-02T01:26:55.157811Z", "shell.execute_reply": "2025-10-02T01:26:55.157161Z" } }, "outputs": [], "source": [ "rabi_experiment = SimulatedRabiExperiment(calibration_set, qubits)" ] }, { "cell_type": "code", "execution_count": 13, "id": "57206350", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:55.160024Z", "iopub.status.busy": "2025-10-02T01:26:55.159847Z", "iopub.status.idle": "2025-10-02T01:26:55.288389Z", "shell.execute_reply": "2025-10-02T01:26:55.287850Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "hovertemplate": "IQ Value: %{y}
x180_pulse_amplitudes: %{text}
", "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "symbol": "circle" }, "name": "I", "text": [ "0", "0.0101", "0.0202", "0.0303", "0.0404", "0.0505", "0.0606", "0.0707", "0.0808", "0.0909", "0.101", "0.1111", "0.1212", "0.1313", "0.1414", "0.1515", "0.1616", "0.1717", "0.1818", "0.1919", "0.202", "0.2121", "0.2222", "0.2323", "0.2424", "0.2525", "0.2626", "0.2727", "0.2828", "0.2929", "0.303", "0.3131", "0.3232", "0.3333", "0.3434", "0.3535", "0.3636", "0.3737", "0.3838", "0.3939", "0.404", "0.4141", "0.4242", "0.4343", "0.4444", "0.4545", "0.4646", "0.4747", "0.4848", "0.4949", "0.5051", "0.5152", "0.5253", "0.5354", "0.5455", "0.5556", "0.5657", "0.5758", "0.5859", "0.596", "0.6061", "0.6162", "0.6263", "0.6364", "0.6465", "0.6566", "0.6667", "0.6768", "0.6869", "0.697", "0.7071", "0.7172", "0.7273", "0.7374", "0.7475", "0.7576", "0.7677", "0.7778", "0.7879", "0.798", "0.8081", "0.8182", "0.8283", "0.8384", "0.8485", "0.8586", "0.8687", "0.8788", "0.8889", "0.899", "0.9091", "0.9192", "0.9293", "0.9394", "0.9495", "0.9596", "0.9697", "0.9798", "0.9899", "1" ], "type": "scatter", "visible": "legendonly", "x": [ "0", "0.0101", "0.0202", "0.0303", "0.0404", "0.0505", "0.0606", "0.0707", "0.0808", "0.0909", "0.101", "0.1111", "0.1212", "0.1313", "0.1414", "0.1515", "0.1616", "0.1717", "0.1818", "0.1919", "0.202", "0.2121", "0.2222", "0.2323", "0.2424", "0.2525", "0.2626", "0.2727", "0.2828", "0.2929", "0.303", "0.3131", "0.3232", "0.3333", "0.3434", "0.3535", "0.3636", "0.3737", "0.3838", "0.3939", "0.404", "0.4141", "0.4242", "0.4343", "0.4444", "0.4545", "0.4646", "0.4747", "0.4848", "0.4949", "0.5051", "0.5152", "0.5253", "0.5354", "0.5455", "0.5556", "0.5657", "0.5758", "0.5859", "0.596", "0.6061", "0.6162", "0.6263", "0.6364", "0.6465", "0.6566", "0.6667", "0.6768", "0.6869", "0.697", "0.7071", "0.7172", "0.7273", "0.7374", "0.7475", "0.7576", "0.7677", "0.7778", "0.7879", "0.798", "0.8081", "0.8182", "0.8283", "0.8384", "0.8485", "0.8586", "0.8687", "0.8788", "0.8889", "0.899", "0.9091", "0.9192", "0.9293", "0.9394", "0.9495", "0.9596", "0.9697", "0.9798", "0.9899", "1" ], "xaxis": "x", "y": [ 1.263494318035269, 1.8840919693037408, 2.1516431815225188, 2.538513883008859, 2.277308301765663, 2.22970049049573, 1.9317417437056668, 1.504930141935532, 1.2380436515757536, 0.6948375854963096, 0.41224537704345626, 0.25318960256055206, 0.3088982244434789, 0.439890551554959, 0.5622897161204167, 0.9283509310240922, 1.5632140759905508, 1.9109480702457953, 1.8688590804406335, 2.2371256985476693, 2.264323281829078, 2.0121294954116107, 1.5869039424297322, 1.0828227582414887, 1.001430856946479, 0.8646724761455665, 0.5183633140534606, 0.4696920902332471, 0.6124734965424785, 0.5979034603683383, 0.9338616067469122, 1.1912952868358373, 1.433916887947938, 1.453976069265695, 2.0058840061446293, 1.8970995950126524, 1.997109376526968, 1.8148705164581351, 1.5757956253111307, 1.1256465200630006, 1.0456608811600845, 0.8855193128073136, 0.6333199246287028, 0.7400658759373016, 0.7316521839425196, 0.8687482600240432, 1.1758682474801054, 1.3713308795155492, 1.4541380191266227, 1.338047515570322, 1.689527313011939, 1.4982768728516602, 1.7922768373834848, 1.3343842450824481, 1.2616799028781756, 0.9678699249696913, 0.9802853539401333, 0.8234867892222976, 0.7548076866694093, 0.721957930266956, 0.7922623565256328, 1.1545124045284896, 1.2997761009638846, 1.473929006311977, 1.2365575904024557, 1.6665973799028015, 1.3514375182833551, 1.2960125511944631, 1.6034370421163904, 1.5076113178856774, 1.086419248910872, 1.2417806258974489, 0.8815459586163836, 1.023784685231378, 0.8066127749499978, 0.9506402015669134, 1.0697562751846983, 1.1327604288008408, 1.3250431170018453, 1.1336859196837, 1.431167264483092, 1.2561772717785753, 1.3813096682461492, 1.3792701527767206, 1.4078813905793697, 1.442794381745613, 1.264549623180273, 0.9254585261279816, 1.1237127843976018, 1.165082284353671, 1.1510046294034455, 0.9025246122789512, 1.1898578548436871, 1.291580330209815, 1.3629796797664337, 1.1256391175445957, 1.214058700731556, 1.5401983858854023, 1.4580387469563854, 1.1084325663656147 ], "yaxis": "y" }, { "hovertemplate": "IQ Value: %{y}
x180_pulse_amplitudes: %{text}
", "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "symbol": "square" }, "name": "Q", "text": [ "0", "0.0101", "0.0202", "0.0303", "0.0404", "0.0505", "0.0606", "0.0707", "0.0808", "0.0909", "0.101", "0.1111", "0.1212", "0.1313", "0.1414", "0.1515", "0.1616", "0.1717", "0.1818", "0.1919", "0.202", "0.2121", "0.2222", "0.2323", "0.2424", "0.2525", "0.2626", "0.2727", "0.2828", "0.2929", "0.303", "0.3131", "0.3232", "0.3333", "0.3434", "0.3535", "0.3636", "0.3737", "0.3838", "0.3939", "0.404", "0.4141", "0.4242", "0.4343", "0.4444", "0.4545", "0.4646", "0.4747", "0.4848", "0.4949", "0.5051", "0.5152", "0.5253", "0.5354", "0.5455", "0.5556", "0.5657", "0.5758", "0.5859", "0.596", "0.6061", "0.6162", "0.6263", "0.6364", "0.6465", "0.6566", "0.6667", "0.6768", "0.6869", "0.697", "0.7071", "0.7172", "0.7273", "0.7374", "0.7475", "0.7576", "0.7677", "0.7778", "0.7879", "0.798", "0.8081", "0.8182", "0.8283", "0.8384", "0.8485", "0.8586", "0.8687", "0.8788", "0.8889", "0.899", "0.9091", "0.9192", "0.9293", "0.9394", "0.9495", "0.9596", "0.9697", "0.9798", "0.9899", "1" ], "type": "scatter", "visible": "legendonly", "x": [ "0", "0.0101", "0.0202", "0.0303", "0.0404", "0.0505", "0.0606", "0.0707", "0.0808", "0.0909", "0.101", "0.1111", "0.1212", "0.1313", "0.1414", "0.1515", "0.1616", "0.1717", "0.1818", "0.1919", "0.202", "0.2121", "0.2222", "0.2323", "0.2424", "0.2525", "0.2626", "0.2727", "0.2828", "0.2929", "0.303", "0.3131", "0.3232", "0.3333", "0.3434", "0.3535", "0.3636", "0.3737", "0.3838", "0.3939", "0.404", "0.4141", "0.4242", "0.4343", "0.4444", "0.4545", "0.4646", "0.4747", "0.4848", "0.4949", "0.5051", "0.5152", "0.5253", "0.5354", "0.5455", "0.5556", "0.5657", "0.5758", "0.5859", "0.596", "0.6061", "0.6162", "0.6263", "0.6364", "0.6465", "0.6566", "0.6667", "0.6768", "0.6869", "0.697", "0.7071", "0.7172", "0.7273", "0.7374", "0.7475", "0.7576", "0.7677", "0.7778", "0.7879", "0.798", "0.8081", "0.8182", "0.8283", "0.8384", "0.8485", "0.8586", "0.8687", "0.8788", "0.8889", "0.899", "0.9091", "0.9192", "0.9293", "0.9394", "0.9495", "0.9596", "0.9697", "0.9798", "0.9899", "1" ], "xaxis": "x", "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "yaxis": "y" }, { "hovertemplate": "IQ Value: %{y}
x180_pulse_amplitudes: %{text}
", "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "symbol": "diamond" }, "name": "Magnitude", "text": [ "0", "0.0101", "0.0202", "0.0303", "0.0404", "0.0505", "0.0606", "0.0707", "0.0808", "0.0909", "0.101", "0.1111", "0.1212", "0.1313", "0.1414", "0.1515", "0.1616", "0.1717", "0.1818", "0.1919", "0.202", "0.2121", "0.2222", "0.2323", "0.2424", "0.2525", "0.2626", "0.2727", "0.2828", "0.2929", "0.303", "0.3131", "0.3232", "0.3333", "0.3434", "0.3535", "0.3636", "0.3737", "0.3838", "0.3939", "0.404", "0.4141", "0.4242", "0.4343", "0.4444", "0.4545", "0.4646", "0.4747", "0.4848", "0.4949", "0.5051", "0.5152", "0.5253", "0.5354", "0.5455", "0.5556", "0.5657", "0.5758", "0.5859", "0.596", "0.6061", "0.6162", "0.6263", "0.6364", "0.6465", "0.6566", "0.6667", "0.6768", "0.6869", "0.697", "0.7071", "0.7172", "0.7273", "0.7374", "0.7475", "0.7576", "0.7677", "0.7778", "0.7879", "0.798", "0.8081", "0.8182", "0.8283", "0.8384", "0.8485", "0.8586", "0.8687", "0.8788", "0.8889", "0.899", "0.9091", "0.9192", "0.9293", "0.9394", "0.9495", "0.9596", "0.9697", "0.9798", "0.9899", "1" ], "type": "scatter", "visible": true, "x": [ "0", "0.0101", "0.0202", "0.0303", "0.0404", "0.0505", "0.0606", "0.0707", "0.0808", "0.0909", "0.101", "0.1111", "0.1212", "0.1313", "0.1414", "0.1515", "0.1616", "0.1717", "0.1818", "0.1919", "0.202", "0.2121", "0.2222", "0.2323", "0.2424", "0.2525", "0.2626", "0.2727", "0.2828", "0.2929", "0.303", "0.3131", "0.3232", "0.3333", "0.3434", "0.3535", "0.3636", "0.3737", "0.3838", "0.3939", "0.404", "0.4141", "0.4242", "0.4343", "0.4444", "0.4545", "0.4646", "0.4747", "0.4848", "0.4949", "0.5051", "0.5152", "0.5253", "0.5354", "0.5455", "0.5556", "0.5657", "0.5758", "0.5859", "0.596", "0.6061", "0.6162", "0.6263", "0.6364", "0.6465", "0.6566", "0.6667", "0.6768", "0.6869", "0.697", "0.7071", "0.7172", "0.7273", "0.7374", "0.7475", "0.7576", "0.7677", "0.7778", "0.7879", "0.798", "0.8081", "0.8182", "0.8283", "0.8384", "0.8485", "0.8586", "0.8687", "0.8788", "0.8889", "0.899", "0.9091", "0.9192", "0.9293", "0.9394", "0.9495", "0.9596", "0.9697", "0.9798", "0.9899", "1" ], "xaxis": "x", "y": [ 1.263494318035269, 1.8840919693037408, 2.1516431815225188, 2.538513883008859, 2.277308301765663, 2.22970049049573, 1.9317417437056668, 1.504930141935532, 1.2380436515757536, 0.6948375854963096, 0.41224537704345626, 0.25318960256055206, 0.3088982244434789, 0.439890551554959, 0.5622897161204167, 0.9283509310240922, 1.5632140759905508, 1.9109480702457953, 1.8688590804406335, 2.2371256985476693, 2.264323281829078, 2.0121294954116107, 1.5869039424297322, 1.0828227582414887, 1.001430856946479, 0.8646724761455665, 0.5183633140534606, 0.4696920902332471, 0.6124734965424785, 0.5979034603683383, 0.9338616067469122, 1.1912952868358373, 1.433916887947938, 1.453976069265695, 2.0058840061446293, 1.8970995950126524, 1.997109376526968, 1.8148705164581351, 1.5757956253111307, 1.1256465200630006, 1.0456608811600845, 0.8855193128073136, 0.6333199246287028, 0.7400658759373016, 0.7316521839425196, 0.8687482600240432, 1.1758682474801054, 1.3713308795155492, 1.4541380191266227, 1.338047515570322, 1.689527313011939, 1.4982768728516602, 1.7922768373834848, 1.3343842450824481, 1.2616799028781756, 0.9678699249696913, 0.9802853539401333, 0.8234867892222976, 0.7548076866694093, 0.721957930266956, 0.7922623565256328, 1.1545124045284896, 1.2997761009638846, 1.473929006311977, 1.2365575904024557, 1.6665973799028015, 1.3514375182833551, 1.2960125511944631, 1.6034370421163904, 1.5076113178856774, 1.086419248910872, 1.2417806258974489, 0.8815459586163836, 1.023784685231378, 0.8066127749499978, 0.9506402015669134, 1.0697562751846983, 1.1327604288008408, 1.3250431170018453, 1.1336859196837, 1.431167264483092, 1.2561772717785753, 1.3813096682461492, 1.3792701527767206, 1.4078813905793697, 1.442794381745613, 1.264549623180273, 0.9254585261279816, 1.1237127843976018, 1.165082284353671, 1.1510046294034455, 0.9025246122789512, 1.1898578548436871, 1.291580330209815, 1.3629796797664337, 1.1256391175445957, 1.214058700731556, 1.5401983858854023, 1.4580387469563854, 1.1084325663656147 ], "yaxis": "y" }, { "hovertemplate": "IQ Value: %{y}
x180_pulse_amplitudes: %{text}
", "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "symbol": "triangle-down" }, "name": "Phase", "text": [ "0", "0.0101", "0.0202", "0.0303", "0.0404", "0.0505", "0.0606", "0.0707", "0.0808", "0.0909", "0.101", "0.1111", "0.1212", "0.1313", "0.1414", "0.1515", "0.1616", "0.1717", "0.1818", "0.1919", "0.202", "0.2121", "0.2222", "0.2323", "0.2424", "0.2525", "0.2626", "0.2727", "0.2828", "0.2929", "0.303", "0.3131", "0.3232", "0.3333", "0.3434", "0.3535", "0.3636", "0.3737", "0.3838", "0.3939", "0.404", "0.4141", "0.4242", "0.4343", "0.4444", "0.4545", "0.4646", "0.4747", "0.4848", "0.4949", "0.5051", "0.5152", "0.5253", "0.5354", "0.5455", "0.5556", "0.5657", "0.5758", "0.5859", "0.596", "0.6061", "0.6162", "0.6263", "0.6364", "0.6465", "0.6566", "0.6667", "0.6768", "0.6869", "0.697", "0.7071", "0.7172", "0.7273", "0.7374", "0.7475", "0.7576", "0.7677", "0.7778", "0.7879", "0.798", "0.8081", "0.8182", "0.8283", "0.8384", "0.8485", "0.8586", "0.8687", "0.8788", "0.8889", "0.899", "0.9091", "0.9192", "0.9293", "0.9394", "0.9495", "0.9596", "0.9697", "0.9798", "0.9899", "1" ], "type": "scatter", "visible": "legendonly", "x": [ "0", "0.0101", "0.0202", "0.0303", "0.0404", "0.0505", "0.0606", "0.0707", "0.0808", "0.0909", "0.101", "0.1111", "0.1212", "0.1313", "0.1414", "0.1515", "0.1616", "0.1717", "0.1818", "0.1919", "0.202", "0.2121", "0.2222", "0.2323", "0.2424", "0.2525", "0.2626", "0.2727", "0.2828", "0.2929", "0.303", "0.3131", "0.3232", "0.3333", "0.3434", "0.3535", "0.3636", "0.3737", "0.3838", "0.3939", "0.404", "0.4141", "0.4242", "0.4343", "0.4444", "0.4545", "0.4646", "0.4747", "0.4848", "0.4949", "0.5051", "0.5152", "0.5253", "0.5354", "0.5455", "0.5556", "0.5657", "0.5758", "0.5859", "0.596", "0.6061", "0.6162", "0.6263", "0.6364", "0.6465", "0.6566", "0.6667", "0.6768", "0.6869", "0.697", "0.7071", "0.7172", "0.7273", "0.7374", "0.7475", "0.7576", "0.7677", "0.7778", "0.7879", "0.798", "0.8081", "0.8182", "0.8283", "0.8384", "0.8485", "0.8586", "0.8687", "0.8788", "0.8889", "0.899", "0.9091", "0.9192", "0.9293", "0.9394", "0.9495", "0.9596", "0.9697", "0.9798", "0.9899", "1" ], "xaxis": "x", "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "yaxis": "y" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "qudits, labels: (0,)", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "coloraxis": { "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] }, "height": 500, "hovermode": "closest", "legend": { "groupclick": "toggleitem" }, "template": { "data": { "bar": [ { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" } ], "scatter": [ { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" } ], "violin": [ { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" } ] }, "layout": { "annotationdefaults": { "font": { "size": 12 } }, "autotypenumbers": "strict", "hoverlabel": { "bgcolor": "white", "font": { "family": "Rockwell", "size": 14 } }, "hovermode": "x unified", "legend": { "bgcolor": "white", "bordercolor": "Black", "borderwidth": 1, "font": { "family": "Rockwell" } }, "xaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true }, "yaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true } } }, "width": 900, "xaxis": { "anchor": "y", "automargin": true, "domain": [ 0.0, 1.0 ], "nticks": 12, "showticklabels": true, "tickangle": 0, "title": { "text": "x180_pulse_amplitudes" } }, "yaxis": { "anchor": "x", "automargin": true, "domain": [ 0.0, 1.0 ], "nticks": 12, "title": { "text": "I/Q Data" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "rabi_experiment.plot_iq(plot_type=\"linear\")" ] }, { "cell_type": "raw", "id": "946983b3", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "The :py:meth:`~keysight.qcs.experiments.Experiment.fit` method takes this I/Q data\n", "and fits it to a decaying sinusoidal model, as specified by the built-in\n", ":py:class:`~keysight.qcs.analysis.DecayingSinusoid`. In order to specify how to\n", "prepare the I/Q data for fitting (in this case, we want to fit the magnitude), the\n", ":py:class:`~keysight.qcs.experiments.RabiExperiment` uses the\n", ":py:class:`~keysight.qcs.analysis.IQuadrature` pre-processor, which extracts the\n", "I-quadrature out of the complex I/Q data.\n", "\n", "The result of the fit is an :py:class:`~keysight.qcs.analysis.EstimateCollection`,\n", "which contains individual :py:class:`~keysight.qcs.analysis.Estimate`\\s for each\n", "qubit that was fitted." ] }, { "cell_type": "code", "execution_count": 14, "id": "5f1dcd9d", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:55.291750Z", "iopub.status.busy": "2025-10-02T01:26:55.291551Z", "iopub.status.idle": "2025-10-02T01:26:55.722026Z", "shell.execute_reply": "2025-10-02T01:26:55.721426Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "EstimateCollection(1)\n", "Estimate(amplitude=1.3380733863826824, decay_rate=2.125015503505198, frequency=39.84246405002836, phase=-1.5244173129014738, ...)\n" ] } ], "source": [ "ec = rabi_experiment.fit()\n", "print(ec)\n", "print(ec.estimates[0])" ] }, { "cell_type": "raw", "id": "518659f0", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "We can represent estimate parameters and its values and estimate collection\n", "in a tabular form by calling the\n", ":py:meth:`~keysight.qcs.analysis.Estimate.draw` method:" ] }, { "cell_type": "code", "execution_count": 15, "id": "23957671", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:55.723968Z", "iopub.status.busy": "2025-10-02T01:26:55.723769Z", "iopub.status.idle": "2025-10-02T01:26:55.731373Z", "shell.execute_reply": "2025-10-02T01:26:55.730514Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", " \n", "\tkeysight-logo-svg\n", "\t\n", "\t\n", "\t\t\n", "\t\n", "\n", "\n", " \n", "
\n", " Estimate Collection\n", "
\n", "
\n", " 0\n", "
\n", "
\n", "
\n", " amplitude\n", "
\n", "
\n", "\n", "
\n", " 1.33807\n", "
\n", "
\n", " \n", "\n", "\n", "
\n", " Estimate:\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
amplitude
val=1.3380733863826824
std=0.0562495283964788
\n", "
\n", "\n", "
\n", " \n", "
\n", "
\n", " decay_rate\n", "
\n", "
\n", "\n", "
\n", " 2.12502\n", "
\n", "
\n", " \n", "\n", "\n", "
\n", " Estimate:\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
decay_rate
val=2.125015503505198
std=0.13913180884404217
\n", "
\n", "\n", "
\n", " \n", "
\n", "
\n", " frequency\n", "
\n", "
\n", "\n", "
\n", " 39.84246\n", "
\n", "
\n", " \n", "\n", "\n", "
\n", " Estimate:\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
frequency
val=39.84246405002836
std=0.13640486264378765
\n", "
\n", "\n", "
\n", " \n", "
\n", "
\n", " offset\n", "
\n", "
\n", "\n", "
\n", " 1.22284\n", "
\n", "
\n", " \n", "\n", "\n", "
\n", " Estimate:\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
offset
val=1.222838096066941
std=0.012794041188506852
\n", "
\n", "\n", "
\n", " \n", "
\n", "
\n", " phase\n", "
\n", "
\n", "\n", "
\n", " -1.52442\n", "
\n", "
\n", " \n", "\n", "\n", "
\n", " Estimate:\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
phase
val=-1.5244173129014738
std=0.03998754875661238
\n", "
\n", "\n", "
\n", " \n", "
\n", "\n", "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": { "text/html": { "isolated": true } }, "output_type": "display_data" } ], "source": [ "ec.draw()" ] }, { "cell_type": "raw", "id": "33684bb2", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "The fitted and the pre-processed data can be visualized by calling the\n", ":py:meth:`~keysight.qcs.experiments.Experiment.plot` method:" ] }, { "cell_type": "code", "execution_count": 16, "id": "d65321e2", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:55.733743Z", "iopub.status.busy": "2025-10-02T01:26:55.733503Z", "iopub.status.idle": "2025-10-02T01:26:57.003927Z", "shell.execute_reply": "2025-10-02T01:26:57.003104Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "legendgroup": "Qubit 0", "legendgrouptitle": { "text": "Qubit 0" }, "line": { "color": "#ff005c" }, "name": "Data", "type": "scatter", "visible": true, "x": [ 0.0, 0.010101010101010102, 0.020202020202020204, 0.030303030303030304, 0.04040404040404041, 0.05050505050505051, 0.06060606060606061, 0.07070707070707072, 0.08080808080808081, 0.09090909090909091, 0.10101010101010102, 0.11111111111111112, 0.12121212121212122, 0.13131313131313133, 0.14141414141414144, 0.15151515151515152, 0.16161616161616163, 0.17171717171717174, 0.18181818181818182, 0.19191919191919193, 0.20202020202020204, 0.21212121212121213, 0.22222222222222224, 0.23232323232323235, 0.24242424242424243, 0.25252525252525254, 0.26262626262626265, 0.27272727272727276, 0.2828282828282829, 0.29292929292929293, 0.30303030303030304, 0.31313131313131315, 0.32323232323232326, 0.33333333333333337, 0.3434343434343435, 0.3535353535353536, 0.36363636363636365, 0.37373737373737376, 0.38383838383838387, 0.393939393939394, 0.4040404040404041, 0.4141414141414142, 0.42424242424242425, 0.43434343434343436, 0.4444444444444445, 0.4545454545454546, 0.4646464646464647, 0.4747474747474748, 0.48484848484848486, 0.494949494949495, 0.5050505050505051, 0.5151515151515152, 0.5252525252525253, 0.5353535353535354, 0.5454545454545455, 0.5555555555555556, 0.5656565656565657, 0.5757575757575758, 0.5858585858585859, 0.595959595959596, 0.6060606060606061, 0.6161616161616162, 0.6262626262626263, 0.6363636363636365, 0.6464646464646465, 0.6565656565656566, 0.6666666666666667, 0.6767676767676768, 0.686868686868687, 0.696969696969697, 0.7070707070707072, 0.7171717171717172, 0.7272727272727273, 0.7373737373737375, 0.7474747474747475, 0.7575757575757577, 0.7676767676767677, 0.7777777777777778, 0.787878787878788, 0.797979797979798, 0.8080808080808082, 0.8181818181818182, 0.8282828282828284, 0.8383838383838385, 0.8484848484848485, 0.8585858585858587, 0.8686868686868687, 0.8787878787878789, 0.888888888888889, 0.8989898989898991, 0.9090909090909092, 0.9191919191919192, 0.9292929292929294, 0.9393939393939394, 0.9494949494949496, 0.9595959595959597, 0.9696969696969697, 0.9797979797979799, 0.98989898989899, 1.0 ], "xaxis": "x", "y": [ 1.263494318035269, 1.8840919693037408, 2.1516431815225188, 2.538513883008859, 2.277308301765663, 2.22970049049573, 1.9317417437056668, 1.504930141935532, 1.2380436515757536, 0.6948375854963096, 0.41224537704345626, 0.25318960256055206, 0.3088982244434789, 0.439890551554959, 0.5622897161204167, 0.9283509310240922, 1.5632140759905508, 1.9109480702457953, 1.8688590804406335, 2.2371256985476693, 2.264323281829078, 2.0121294954116107, 1.5869039424297322, 1.0828227582414887, 1.001430856946479, 0.8646724761455665, 0.5183633140534606, 0.4696920902332471, 0.6124734965424785, 0.5979034603683383, 0.9338616067469122, 1.1912952868358373, 1.433916887947938, 1.453976069265695, 2.0058840061446293, 1.8970995950126524, 1.997109376526968, 1.8148705164581351, 1.5757956253111307, 1.1256465200630006, 1.0456608811600845, 0.8855193128073136, 0.6333199246287028, 0.7400658759373016, 0.7316521839425196, 0.8687482600240432, 1.1758682474801054, 1.3713308795155492, 1.4541380191266227, 1.338047515570322, 1.689527313011939, 1.4982768728516602, 1.7922768373834848, 1.3343842450824481, 1.2616799028781756, 0.9678699249696913, 0.9802853539401333, 0.8234867892222976, 0.7548076866694093, 0.721957930266956, 0.7922623565256328, 1.1545124045284896, 1.2997761009638846, 1.473929006311977, 1.2365575904024557, 1.6665973799028015, 1.3514375182833551, 1.2960125511944631, 1.6034370421163904, 1.5076113178856774, 1.086419248910872, 1.2417806258974489, 0.8815459586163836, 1.023784685231378, 0.8066127749499978, 0.9506402015669134, 1.0697562751846983, 1.1327604288008408, 1.3250431170018453, 1.1336859196837, 1.431167264483092, 1.2561772717785753, 1.3813096682461492, 1.3792701527767206, 1.4078813905793697, 1.442794381745613, 1.264549623180273, 0.9254585261279816, 1.1237127843976018, 1.165082284353671, 1.1510046294034455, 0.9025246122789512, 1.1898578548436871, 1.291580330209815, 1.3629796797664337, 1.1256391175445957, 1.214058700731556, 1.5401983858854023, 1.4580387469563854, 1.1084325663656147 ], "yaxis": "y" }, { "legendgroup": "Qubit 0", "legendgrouptitle": { "text": "Qubit 0" }, "line": { "color": "#00d539", "dash": "dash" }, "name": "Data - Fit", "type": "scatter", "visible": true, "x": [ 0.0, 0.010101010101010102, 0.020202020202020204, 0.030303030303030304, 0.04040404040404041, 0.05050505050505051, 0.06060606060606061, 0.07070707070707072, 0.08080808080808081, 0.09090909090909091, 0.10101010101010102, 0.11111111111111112, 0.12121212121212122, 0.13131313131313133, 0.14141414141414144, 0.15151515151515152, 0.16161616161616163, 0.17171717171717174, 0.18181818181818182, 0.19191919191919193, 0.20202020202020204, 0.21212121212121213, 0.22222222222222224, 0.23232323232323235, 0.24242424242424243, 0.25252525252525254, 0.26262626262626265, 0.27272727272727276, 0.2828282828282829, 0.29292929292929293, 0.30303030303030304, 0.31313131313131315, 0.32323232323232326, 0.33333333333333337, 0.3434343434343435, 0.3535353535353536, 0.36363636363636365, 0.37373737373737376, 0.38383838383838387, 0.393939393939394, 0.4040404040404041, 0.4141414141414142, 0.42424242424242425, 0.43434343434343436, 0.4444444444444445, 0.4545454545454546, 0.4646464646464647, 0.4747474747474748, 0.48484848484848486, 0.494949494949495, 0.5050505050505051, 0.5151515151515152, 0.5252525252525253, 0.5353535353535354, 0.5454545454545455, 0.5555555555555556, 0.5656565656565657, 0.5757575757575758, 0.5858585858585859, 0.595959595959596, 0.6060606060606061, 0.6161616161616162, 0.6262626262626263, 0.6363636363636365, 0.6464646464646465, 0.6565656565656566, 0.6666666666666667, 0.6767676767676768, 0.686868686868687, 0.696969696969697, 0.7070707070707072, 0.7171717171717172, 0.7272727272727273, 0.7373737373737375, 0.7474747474747475, 0.7575757575757577, 0.7676767676767677, 0.7777777777777778, 0.787878787878788, 0.797979797979798, 0.8080808080808082, 0.8181818181818182, 0.8282828282828284, 0.8383838383838385, 0.8484848484848485, 0.8585858585858587, 0.8686868686868687, 0.8787878787878789, 0.888888888888889, 0.8989898989898991, 0.9090909090909092, 0.9191919191919192, 0.9292929292929294, 0.9393939393939394, 0.9494949494949496, 0.9595959595959597, 0.9696969696969697, 0.9797979797979799, 0.98989898989899, 1.0 ], "xaxis": "x", "y": [ 1.2848743745224285, 1.7911118382814455, 2.1869436413638472, 2.4149234772661714, 2.446346354605078, 2.2845431922671193, 1.9630121826534592, 1.5388969812430122, 1.0830301914412364, 0.6682481409652464, 0.3578824036278395, 0.1962257286935225, 0.20238481694643373, 0.36834180793560045, 0.6613516765027632, 1.0301173101849517, 1.4136149723691958, 1.7510745169281159, 1.9915004471708562, 2.101259748168952, 2.0686275876898863, 1.9047057326430608, 1.6407220514239618, 1.322286742584769, 1.0016340745259575, 0.729151160028422, 0.545552425503327, 0.4759000660083408, 0.526330799069448, 0.6838885996788668, 0.9193591347750227, 1.1925351850512835, 1.4589850268659985, 1.6771990065657314, 1.8149774846272857, 1.8540900877635123, 1.7925481132830492, 1.6442339603079497, 1.4360567719016792, 1.2031843733155954, 0.983180206683023, 0.8100108893515712, 0.7088697387608601, 0.6925938991040942, 0.7601700735826874, 0.8974754704619741, 1.0800438202290032, 1.2773375219369991, 1.4577925490475918, 1.5938123558583697, 1.6659296401110422, 1.6655181626135152, 1.5956902069507601, 1.4703151554822267, 1.3113920695555994, 1.1452575478514595, 0.9982725981251162, 0.892686923141836, 0.8433218468025006, 0.8555577587808431, 0.9248869268527842, 1.0380360391063683, 1.1754164449105693, 1.3144619862014246, 1.4332935871791919, 1.5141220857125088, 1.54586657634352, 1.525610546465025, 1.458716249980443, 1.3576357615324457, 1.2396599628501697, 1.1240031589998731, 1.028708516144978, 0.9678672280029991, 0.9495743977256511, 0.9749112947121805, 1.0380704885142666, 1.1275562077090169, 1.2282264668583043, 1.323821284621125, 1.3995600193098223, 1.444397528929321, 1.452599616649269, 1.4244192596472858, 1.3658053418857024, 1.2872302310142363, 1.2018571195801653, 1.123362324475792, 1.0637686130665367, 1.0316289325080923, 1.0308306974953332, 1.0601821056948593, 1.113812505002062, 1.1822898081452538, 1.2542495584963838, 1.3182586301364358, 1.3646113837368008, 1.386779391925131, 1.3823019040932085, 1.3530008832342117 ], "yaxis": "y" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "customRabi - Qubit 0", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "height": 500, "legend": { "groupclick": "toggleitem" }, "template": { "data": { "bar": [ { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" } ], "scatter": [ { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" } ], "violin": [ { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" } ] }, "layout": { "annotationdefaults": { "font": { "size": 12 } }, "autotypenumbers": "strict", "hoverlabel": { "bgcolor": "white", "font": { "family": "Rockwell", "size": 14 } }, "hovermode": "x unified", "legend": { "bgcolor": "white", "bordercolor": "Black", "borderwidth": 1, "font": { "family": "Rockwell" } }, "xaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true }, "yaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true } } }, "width": 900, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "showticklabels": true, "title": { "text": "x180_pulse_amplitudes" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "I/Q Magnitude" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "rabi_experiment.plot()" ] }, { "cell_type": "raw", "id": "36fe4b87", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "We can then get the calibration value associated to this Rabi Experiment by\n", "calling\n", ":py:meth:`~keysight.qcs.experiments.RabiExperiment.get_updated_calibration_values`.\n", "This method will compute the new values for the calibration variable(s) of this\n", "experiment using the fit results." ] }, { "cell_type": "code", "execution_count": 17, "id": "6d583446", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:57.006571Z", "iopub.status.busy": "2025-10-02T01:26:57.006355Z", "iopub.status.idle": "2025-10-02T01:26:57.439693Z", "shell.execute_reply": "2025-10-02T01:26:57.438835Z" } }, "outputs": [ { "data": { "text/plain": [ "{'x180_pulse_amplitudes': [0.03826112037115306]}" ] }, "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ "rabi_experiment.get_updated_calibration_values()" ] }, { "cell_type": "raw", "id": "af5823fc", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "To check the current state of that variable in the calibration_set to confirm\n", "its update, one can do:" ] }, { "cell_type": "code", "execution_count": 18, "id": "be6ac85b", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:57.441949Z", "iopub.status.busy": "2025-10-02T01:26:57.441767Z", "iopub.status.idle": "2025-10-02T01:26:57.447603Z", "shell.execute_reply": "2025-10-02T01:26:57.446711Z" } }, "outputs": [ { "data": { "text/plain": [ "array([0.5])" ] }, "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ "rabi_experiment.calibration_set.variables.x180_pulse_amplitudes.value" ] }, { "cell_type": "raw", "id": "ab0b5e16", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "The update is then done as follows:" ] }, { "cell_type": "code", "execution_count": 19, "id": "ab9bf927", "metadata": { "execution": { "iopub.execute_input": "2025-10-02T01:26:57.449755Z", "iopub.status.busy": "2025-10-02T01:26:57.449516Z", "iopub.status.idle": "2025-10-02T01:26:57.929680Z", "shell.execute_reply": "2025-10-02T01:26:57.928919Z" } }, "outputs": [ { "data": { "text/plain": [ "array([0.03826112])" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "rabi_experiment.set_updated_calibration_values()\n", "rabi_experiment.calibration_set.variables.x180_pulse_amplitudes.value" ] }, { "cell_type": "raw", "id": "5a8fae0b", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "The last line printing the new updated value, thus confirming that the update\n", "has been successful." ] } ], "metadata": { "jupytext": { "cell_metadata_filter": "raw_mimetype,nbsphinx,-all", "main_language": "python", "notebook_metadata_filter": "-all", "text_representation": { "extension": ".py", "format_name": "percent" } }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.12" } }, "nbformat": 4, "nbformat_minor": 5 }