{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "4e23ccc6", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:14:27.563779Z", "iopub.status.busy": "2024-10-11T06:14:27.563392Z", "iopub.status.idle": "2024-10-11T06:14:27.569506Z", "shell.execute_reply": "2024-10-11T06:14:27.568751Z" }, "nbsphinx": "hidden" }, "outputs": [], "source": [ "# Copyright 2024 Keysight Technologies Inc." ] }, { "cell_type": "raw", "id": "eb70cab2", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "IQ Distribution experiment\n", "==========================\n", "\n", "This guide shows how to measure the I/Q distribution of both the ground state and\n", "excited state of a qubit using a variable amplitude X pulse followed by a measurement.\n", "\n", "We can use the pre-defined\n", ":py:class:`~keysight.qcs.experiments.IQDistributionExperiment` and our example\n", "calibration set from the experiments library. To start out, we define an\n", "empty :py:class:`~keysight.qcs.channels.ChannelMapper` to instantiate our experiment\n", "for a single qubit." ] }, { "cell_type": "code", "execution_count": 2, "id": "de919c71", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:14:27.573026Z", "iopub.status.busy": "2024-10-11T06:14:27.572721Z", "iopub.status.idle": "2024-10-11T06:14:31.107753Z", "shell.execute_reply": "2024-10-11T06:14:31.106896Z" }, "lines_to_next_cell": 2 }, "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", "\tkeysight-logo-svg\n", "\t\n", "\t\n", "\t\t\n", "\t\n", "\n", "\n", " \n", "
\n", " Program\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", "
Durationundefined
Layers1
Targets1
Repetitions\n", " Repeat with 100 repetitions\n", "
\n", " Sweep with 2 repetitions\n", "
\n", " Associations\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
rx_anglesArray(name=scan_values, shape=(2, 1), dtype=float, unit=none)
\n", "
\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", "
Durationundefined
\n", "
\n", "\n", "
\n", "
\n", "
\n", " qudits\n", " \n", " 0\n", " \n", " \n", "
\n", " RX\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate RX on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=rx_angles, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\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" ], "text/plain": [ "" ] }, "metadata": { "text/html": { "isolated": true } }, "output_type": "display_data" } ], "source": [ "import keysight.qcs as qcs\n", "from keysight.qcs.experiments import IQDistributionExperiment, make_calibration_set\n", "\n", "run_on_hw = False\n", "\n", "n_qubits = 1\n", "cal_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", "iq_experiment = IQDistributionExperiment(mapper, cal_set, qubits)\n", "\n", "iq_experiment.draw()" ] }, { "cell_type": "raw", "id": "9e9c0c94", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "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 both zero and\n", "one to prepare the ground and excited states.\n", "\n", "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": 3, "id": "fd5651b8", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:14:31.116809Z", "iopub.status.busy": "2024-10-11T06:14:31.116204Z", "iopub.status.idle": "2024-10-11T06:14:31.183427Z", "shell.execute_reply": "2024-10-11T06:14:31.182694Z" }, "lines_to_next_cell": 0 }, "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", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \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\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", "
Duration130 ns
Layers1
Targets3
Repetitions\n", " Repeat with 100 repetitions\n", "
\n", " Sweep with 2 repetitions\n", "
\n", " Associations\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
rx_anglesArray(name=scan_values, shape=(2, 1), dtype=float, unit=none)
\n", "
\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", "
Duration130 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=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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 ('xy_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationMax(ScalarRef(name=readout_pulse_duration, value=100 ns, dtype=float, unit=s), ScalarRef(name=acquisition_duration, value=100 ns, dtype=float, unit=s))
\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=xy_pulse_durations, value=30 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", " 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=measurement_phase, 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=0 s, 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=xy_pulse_durations, value=30 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=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" ], "text/plain": [ "" ] }, "metadata": { "text/html": { "isolated": true } }, "output_type": "display_data" } ], "source": [ "iq_experiment.compiled_program.draw()" ] }, { "cell_type": "raw", "id": "992fcf81", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "The `RX` pulse has been replaced by an appropriately modulated Gaussian pulse and\n", "the measurement waveform and simultaneous acquisition have been added on a separate\n", "virtual readout channel.\n", "\n", "We can also use the render method to visualize the waveform sequence within this\n", "program." ] }, { "cell_type": "code", "execution_count": 4, "id": "eda0d442", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:14:31.187044Z", "iopub.status.busy": "2024-10-11T06:14:31.186706Z", "iopub.status.idle": "2024-10-11T06:14:31.996864Z", "shell.execute_reply": "2024-10-11T06:14:31.995793Z" } }, "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": [ 0.00210367291082512, 0.006335903507076278, 0.01042702856821132, 0.014161252140126384, 0.017320466061983012, 0.019690483381026486, 0.0210675252508359, 0.02126480499028621, 0.020119040970910274, 0.01749672170142006, 0.013299942364040989, 0.007471632517237905, 1.2809726914185912e-17, -0.009077973577613321, -0.019674134957864003, -0.03164798779744193, -0.04480685141100522, -0.05890742405473233, -0.07365879197564994, -0.08872688926648901, -0.10374037515256801, -0.11829785563675423, -0.13197633647409607, -0.1443407553404309, -0.15495440393955476, -0.16339001680923967, -0.16924127385901802, -0.1721344392623455, -0.17173984119621882, -0.16778288590580398, -0.16005429634099574, -0.14841927064612165, -0.13282526934820857, -0.11330816221466551, -0.08999649622309484, -0.06311368443790512, -0.032977961104804554, -2.3444189295971162e-16, 0.035321850170652265, 0.07240869910900748, 0.11061054024303207, 0.14921782826584826, 0.18747500740747208, 0.22459573027251326, 0.2597794531976955, 0.29222904667985394, 0.3211690200483612, 0.3458639295787738, 0.3656365198156006, 0.3798851398742137, 0.38809998050688505, 0.389877693999956, 0.3849339874274369, 0.37311381997767856, 0.3543988862018972, 0.3289121279790823, 0.2969190873138454, 0.25882598806964296, 0.21517451544620494, 0.16663334531516064, 0.11398655919059497, 0.05811916233493691, 6.830482228336239e-16, -0.059337562127680904, -0.11881676462877204, -0.17733990731313884, -0.233811607240185, -0.2871623134710063, -0.33637151719740743, -0.3804900974767667, -0.41866125910421015, -0.45013954986356053, -0.47430748879329326, -0.4906893940668042, -0.4989620671376251, -0.4989620671376252, -0.4906893940668045, -0.4743074887932938, -0.4501395498635613, -0.4186612591042111, -0.380490097476768, -0.3363715171974089, -0.2871623134710078, -0.2338116072401866, -0.1773399073131405, -0.11881676462877376, -0.059337562127682604, -9.692779543067613e-16, 0.058119162334935345, 0.11398655919059351, 0.16663334531515925, 0.21517451544620378, 0.25882598806964197, 0.2969190873138446, 0.32891212797908176, 0.35439888620189686, 0.37311381997767845, 0.38493398742743706, 0.3898776939999564, 0.3880999805068856, 0.37988513987421446, 0.3656365198156016, 0.3458639295787749, 0.3211690200483625, 0.2922290466798552, 0.25977945319769685, 0.22459573027251473, 0.1874750074074735, 0.14921782826584962, 0.11061054024303338, 0.07240869910900871, 0.03532185017065338, 7.487015291294016e-16, -0.0329779611048037, -0.06311368443790442, -0.0899964962230943, -0.11330816221466516, -0.13282526934820835, -0.1484192706461216, -0.16005429634099583, -0.1677828859058042, -0.1717398411962191, -0.17213443926234592, -0.16924127385901852, -0.16339001680924026, -0.1549544039395554, -0.14434075534043148, -0.13197633647409673, -0.11829785563675488, -0.10374037515256866, -0.08872688926648963, -0.07365879197565048, -0.05890742405473285, -0.044806851411005696, -0.03164798779744239, -0.01967413495786436, -0.009077973577613613, -2.177653575411608e-16, 0.007471632517237734, 0.01329994236404086, 0.01749672170142, 0.020119040970910253, 0.021264804990286254, 0.02106752525083594, 0.019690483381026497, 0.01732046606198307, 0.014161252140126441, 0.010427028568211394, 0.006335903507076311, 0.002103672910825104, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.0003127645009414709, 0.0009050420777136429, 0.001399532220232912, 0.0017375015738507083, 0.0018695661244606256, 0.001758770740034472, 0.001383044977416346, 0.0007369072416706969, -0.00016767593961957943, -0.0013013296102983615, -0.002618221216522631, -0.0040578919159804435, -0.005547895863492363, -0.007007135977056625, -0.008349750297817309, -0.009489374837426272, -0.010343588069000662, -0.010838329962786514, -0.010912085336512495, -0.010519627537216894, -0.00963513394809723, -0.00825450897346064, -0.0063967820701261065, -0.0041044867933149425, -0.0014429701437291397, 0.001501372056428784, 0.0046238904218470515, 0.007805417815561963, 0.010916811776638159, 0.013824130593804744, 0.016394237601993884, 0.018500603914975988, 0.020029064724444993, 0.02088327931530661, 0.0209896504799712, 0.02030147503969808, 0.018802123238756286, 0.016507079981907202, 0.013464723956472165, 0.009755769987242648, 0.00549135359883179, 0.0008097925759753764, -0.004127883940986679, -0.009143494908090674, -0.014048162689222828, -0.018649429474205035, -0.02275876655323092, -0.02619918481564523, -0.02881264274145996, -0.03046694806800323, -0.031061861501375614, -0.030534135072521725, -0.028861253291280354, -0.026063690940998595, -0.02220555556483103, -0.017393543435181003, -0.011774202784292987, -0.005529564809178805, 0.0011287311659774857, 0.007966629610275855, 0.01473592268539469, 0.021183293054701333, 0.02705980500730981, 0.03213048790184805, 0.036183643900051146, 0.03903951402937422, 0.040557952985098386, 0.040644793398175276, 0.03925662364629406, 0.03640375823853009, 0.03215124444723387, 0.026617820872691385, 0.019972820357788947, 0.012431088243506321, 0.004246064372454806, -0.0042987494990291255, -0.012899649025979605, -0.02124356902191899, -0.02901951892813934, -0.03593019291480354, -0.04170332053935147, -0.046102325153979544, -0.04893587500574811, -0.050065945817868954, -0.04941406256489491, -0.046965450551633904, -0.042770899629864106, -0.036946227827088715, -0.029669318833817175, -0.021174798452210358, -0.011746504857198109, -0.0017079929520773356, 0.008588609082841585, 0.01877500580551862, 0.028479964075154015, 0.037342888977719736, 0.04502724804043156, 0.05123334310131374, 0.05570994533961313, 0.05826434348434251, 0.058770407077340256, 0.057174334182602767, 0.05349783380200142, 0.04783858464242874, 0.04036791051131282, 0.03132571491094902, 0.021012819586948565, 0.009780950046421185, -0.001979298321476916, -0.013852100397227058, -0.02541116937060966, -0.036235125876546606, -0.045922911900264006, -0.054108683804533715, -0.060475630331076745, -0.06476819358383862, -0.06680222287914, -0.06647266126682325, -0.06375845011659635, -0.058724435443558085, -0.05152016712898321, -0.042375595007640085, -0.03159377983000939, -0.019540848163938713, -0.006633524236334662, 0.006675335389515455, 0.019912700106309526, 0.03260225167976179, 0.04428159337607674, 0.05451915761292697, 0.0629301918981976, 0.06919122959312449, 0.07305250088519884, 0.07434780871382222, 0.07300148191794836, 0.06903212053604053, 0.0625529623628203, 0.05376882147304903, 0.04296967406540868, 0.03052109011117987, 0.016851826377430205, 0.002439003077743434, -0.012208621327309682, -0.02656868832154489, -0.04012394814583132, -0.05238096632488858, -0.06288814876615031, -0.07125242480053438, -0.07715397033391186, -0.08035841900888285, -0.08072609573107097, -0.07821791110588057, -0.0728976735988569, -0.06493070436803973, -0.054578773117176425, -0.042191507152143724, -0.02819455520351082, -0.013074907745233766, 0.00263611796668781, 0.018381631084039046, 0.033598993747801516, 0.0477400121126282, 0.060290764212678816, 0.07079034473906355, 0.07884784070680353, 0.08415691108377704, 0.08650742575931612, 0.08579372190841009, 0.08201915525824284, 0.07529675575016989, 0.06584593689003586, 0.05398535065510962, 0.04012212000566076, 0.024737813716989965, 0.0083716485294811, -0.008398492942279423, -0.024976557360294038, -0.04076959878994507, -0.055209076936360776, -0.06777140730658988, -0.07799701761361912, -0.08550721439605066, -0.09001823899130353, -0.09135199008122347, -0.0894430075896403, -0.08434144558731378, -0.0762119053075874, -0.06532814824381945, -0.05206385821215444, -0.03687976481712807, -0.02030757371826104, -0.0029312665886263634, 0.014633568653794093, 0.03176164250972178, 0.04784032061200939, 0.06229162972852481, 0.07459311932314097, 0.08429682271544348, 0.09104562714860655, 0.09458645259080624, 0.0947797516828626, 0.09160497391388278, 0.08516178119589865, 0.07566695435128801, 0.06344708513765797, 0.048927300707770745, 0.03261641131373628, 0.015089002375703955, -0.0030348960184053814, -0.021111839647990654, -0.038497914519003806, -0.05457177333890258, -0.06875693645350164, -0.08054255350519975, -0.08950187506893884, -0.0953077637711574, -0.09774467907349371, -0.09671669528959217, -0.0922512540221552, -0.08449850498060923, -0.07372624757267289, -0.060310644042401634, -0.04472302752791024, -0.02751326970493917, -0.009290297535856836, 0.009299547490111935, 0.027595535157945106, 0.04494613351207069, 0.06073231138185596, 0.07438971946192348, 0.08542895180784293, 0.09345315729009689, 0.09817236467098842, 0.0994140021727333, 0.09712922849238013, 0.09139484230309518, 0.08241069596128003, 0.07049270069651148, 0.056061669166864135, 0.03962839118634492, 0.02177547425236254, 0.0031365973024793537, -0.015626080322376987, -0.03384554583267111, -0.050873749173570335, -0.06610475440302814, -0.07899639563995985, -0.08908966029246515, -0.09602510362581038, -0.09955570517057474, -0.09955570517057491, -0.09602510362581088, -0.08908966029246601, -0.07899639563996101, -0.06610475440302956, -0.050873749173571965, -0.03384554583267291, -0.015626080322378874, 0.0031365973024774334, 0.02177547425236066, 0.03962839118634314, 0.05606166916686254, 0.07049270069651009, 0.0824106959612789, 0.09139484230309437, 0.09712922849237966, 0.0994140021727332, 0.09817236467098868, 0.09345315729009748, 0.08542895180784386, 0.0743897194619247, 0.060732311381857446, 0.04494613351207237, 0.02759553515794692, 0.00929954749011383, -0.00929029753585493, -0.027513269704937317, -0.04472302752790851, -0.06031064404240007, -0.07372624757267157, -0.0844985049806082, -0.09225125402215446, -0.09671669528959179, -0.09774467907349364, -0.09530776377115771, -0.08950187506893946, -0.0805425535052007, -0.06875693645350286, -0.054571773338904034, -0.03849791451900546, -0.021111839647992427, -0.003034896018407215, 0.015089002375702121, 0.03261641131373451, 0.0489273007077691, 0.06344708513765653, 0.0756669543512868, 0.08516178119589772, 0.09160497391388214, 0.09477975168286228, 0.09458645259080624, 0.0910456271486069, 0.08429682271544417, 0.07459311932314196, 0.06229162972852605, 0.04784032061201086, 0.03176164250972341, 0.014633568653795826, -0.0029312665886245875, -0.020307573718259277, -0.03687976481712639, -0.05206385821215289, -0.0653281482438181, -0.0762119053075863, -0.08434144558731295, -0.08944300758963979, -0.09135199008122327, -0.09001823899130366, -0.08550721439605113, -0.0779970176136199, -0.06777140730659093, -0.05520907693636208, -0.04076959878994658, -0.02497655736029568, -0.008398492942281132, 0.008371648529479386, 0.024737813716988303, 0.04012212000565921, 0.05398535065510826, 0.0658459368900347, 0.075296755750169, 0.08201915525824223, 0.0857937219084098, 0.08650742575931615, 0.08415691108377739, 0.07884784070680419, 0.07079034473906445, 0.06029076421267996, 0.04774001211262953, 0.033598993747802994, 0.018381631084040614, 0.0026361179666894133, -0.013074907745232182, -0.028194555203509317, -0.04219150715214234, -0.05457877311717521, -0.06493070436803873, -0.07289767359885617, -0.07821791110588011, -0.0807260957310708, -0.08035841900888296, -0.07715397033391228, -0.07125242480053505, -0.06288814876615123, -0.05238096632488973, -0.04012394814583263, -0.026568688321546328, -0.012208621327311176, 0.002439003077741934, 0.016851826377428752, 0.03052109011117852, 0.04296967406540747, 0.053768821473048026, 0.06255296236281953, 0.06903212053603999, 0.07300148191794809, 0.07434780871382221, 0.0730525008851991, 0.06919122959312501, 0.06293019189819835, 0.05451915761292793, 0.044281593376077864, 0.032602251679763036, 0.019912700106310844, 0.00667533538951681, -0.006633524236333319, -0.019540848163937433, -0.03159377983000821, -0.04237559500763905, -0.051520167128982344, -0.05872443544355742, -0.06375845011659592, -0.06647266126682304, -0.06680222287914005, -0.06476819358383892, -0.0604756303310773, -0.054108683804534465, -0.045922911900264936, -0.03623512587654767, -0.025411169370610814, -0.013852100397228263, -0.0019792983214781236, 0.009780950046420015, 0.021012819586947482, 0.031325714910948065, 0.04036791051131201, 0.047838584642428114, 0.053497833802000995, 0.05717433418260255, 0.05877040707734024, 0.0582643434843427, 0.055709945339613536, 0.05123334310131433, 0.04502724804043231, 0.03734288897772061, 0.028479964075154983, 0.018775005805519652, 0.008588609082842626, -0.001707992952076315, -0.011746504857197144, -0.021174798452209487, -0.029669318833816433, -0.03694622782708812, -0.042770899629863676, -0.04696545055163366, -0.04941406256489487, -0.050065945817869086, -0.048935875005748426, -0.04610232515398002, -0.04170332053935209, -0.035930192914804274, -0.02901951892814015, -0.021243569021919845, -0.012899649025980484, -0.004298749499029994, 0.004246064372453978, 0.01243108824350556, 0.019972820357788284, 0.026617820872690837, 0.03215124444723346, 0.03640375823852982, 0.039256623646293926, 0.040644793398175304, 0.04055795298509855, 0.03903951402937453, 0.036183643900051576, 0.03213048790184858, 0.027059805007310415, 0.021183293054701995, 0.01473592268539538, 0.007966629610276551, 0.001128731165978161, -0.005529564809178176, -0.011774202784292424, -0.01739354343518052, -0.022205555564830653, -0.02606369094099832, -0.028861253291280194, -0.030534135072521677, -0.031061861501375684, -0.03046694806800341, -0.028812642741460236, -0.02619918481564559, -0.02275876655323134, -0.01864942947420551, -0.014048162689223332, -0.009143494908091193, -0.00412788394098719, 0.0008097925759748933, 0.005491353598831351, 0.00975576998724227, 0.013464723956471858, 0.01650707998190697, 0.018802123238756137, 0.020301475039698022, 0.02098965047997122, 0.020883279315306705, 0.020029064724445156, 0.018500603914976214, 0.01639423760199416, 0.01382413059380505, 0.010916811776638485, 0.007805417815562298, 0.004623890421847378, 0.0015013720564290899, -0.0014429701437288641, -0.004104486793314706, -0.006396782070125914, -0.0082545089734605, -0.009635133948097143, -0.010519627537216856, -0.010912085336512506, -0.010838329962786566, -0.01034358806900075, -0.00948937483742639, -0.008349750297817449, -0.007007135977056776, -0.005547895863492519, -0.004057891915980598, -0.002618221216522773, -0.001301329610298486, -0.00016767593961968148, 0.0007369072416706204, 0.0013830449774162963, 0.0017587707400344493, 0.0018695661244606265, 0.0017375015738507295, 0.0013995322202329486, 0.0009050420777136894, 0.0003127645009415214 ], "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.99556196460308, -0.9602936856769432, -0.8910065241883682, -0.7901550123756911, -0.661311865323653, -0.509041415750373, -0.33873792024529364, -0.1564344650402337, 0.031410759078124906, 0.2181432413965387, 0.39714789063477646, 0.5620833778521264, 0.7071067811865434, 0.8270805742745581, 0.917754625683978, 0.9759167619387451, 0.9995065603657303, 0.9876883405951378, 0.9408807689542269, 0.8607420270039466, 0.7501110696304641, 0.6129070536529827, 0.4539904997395544, 0.27899110603923816, 0.09410831331852423, -0.09410831331850374, -0.27899110603921834, -0.453990499739536, -0.6129070536529662, -0.7501110696304503, -0.8607420270039359, -0.9408807689542196, -0.987688340595134, -0.9995065603657303, -0.9759167619387488, -0.9177546256839852, -0.8270805742745687, -0.7071067811865571, -0.5620833778521427, -0.39714789063479483, -0.21814324139655847, -0.03141075907814542, 0.15643446504021316, 0.3387379202452737, 0.5090414157503543, 0.6613118653236363, 0.7901550123756768, 0.8910065241883568, 0.9602936856769351, 0.9955619646030756, 0.9955619646030794, 0.9602936856769465, 0.8910065241883753, 0.7901550123757017, 0.6613118653236669, 0.5090414157503896, 0.33873792024531246, 0.15643446504025396, -0.03141075907810395, -0.21814324139651783, -0.3971478906347564, -0.5620833778521078, -0.707106781186527, -0.8270805742745445, -0.9177546256839677, -0.9759167619387384, -0.9995065603657275, -0.9876883405951389, -0.940880768954232, -0.8607420270039554, -0.7501110696304764, -0.6129070536529979, -0.4539904997395721, -0.2789911060392576, -0.09410831331854477, 0.09410831331848281, 0.2789911060391978, 0.45399049973951655, 0.6129070536529486, 0.7501110696304352, 0.8607420270039237, 0.9408807689542107, 0.9876883405951288, 0.999506560365729, 0.9759167619387515, 0.9177546256839919, 0.827080574274579, 0.7071067811865706, 0.5620833778521589, 0.39714789063481315, 0.2181432413965783, 0.03141075907816604, -0.15643446504019248, -0.33873792024525373, -0.5090414157503358, -0.6613118653236197, -0.7901550123756629, -0.8910065241883461, -0.960293685676928, -0.9955619646030722, -0.99556196460308, -0.960293685676951, -0.8910065241883834, -0.7901550123757133, -0.6613118653236816, -0.5090414157504068, -0.33873792024533156, -0.15643446504027428, 0.031410759078083106, 0.21814324139649718, 0.3971478906347367, 0.5620833778520897, 0.7071067811865112, 0.8270805742745314, 0.9177546256839579, 0.9759167619387323, 0.9995065603657253, 0.9876883405951405, 0.9408807689542376, 0.8607420270039647, 0.750111069630489, 0.6129070536530135, 0.45399049973958994, 0.27899110603927724, 0.09410831331856548, -0.0941083133184618, -0.2789911060391772, -0.4539904997394971, -0.612907053652931, -0.7501110696304198, -0.8607420270039113, -0.9408807689542018, -0.9876883405951238, -0.9995065603657278, -0.9759167619387542, -0.9177546256839985, -0.8270805742745891, -0.7071067811865841, -0.5620833778521751, -0.3971478906348317, -0.21814324139659846, -0.031410759078187106, 0.15643446504017122, 0.338737920245233, 0.5090414157503164, 0.6613118653236023, 0.790155012375648, 0.8910065241883345, 0.96029368567692, 0.9955619646030681, 0.9955619646030799, 0.9602936856769548, 0.8910065241883913, 0.7901550123757248, 0.6613118653236962, 0.509041415750424, 0.33873792024535077, 0.15643446504029487, -0.03141075907806187, -0.2181432413964761, -0.39714789063471645, -0.5620833778520711, -0.7071067811864948, -0.827080574274518, -0.9177546256839477, -0.9759167619387258, -0.9995065603657226, -0.987688340595142, -0.9408807689542429, -0.8607420270039737, -0.7501110696305014, -0.6129070536530289, -0.45399049973960787, -0.2789911060392969, -0.09410831331858616, 0.09410831331844077, 0.27899110603915656, 0.4539904997394776, 0.6129070536529133, 0.7501110696304046, 0.8607420270038991, 0.940880768954193, 0.9876883405951187, 0.9995065603657267, 0.9759167619387571, 0.9177546256840051, 0.8270805742745995, 0.7071067811865975, 0.5620833778521913, 0.39714789063485, 0.21814324139661828, 0.0314107590782077, -0.15643446504015054, -0.338737920245213, -0.5090414157502977, -0.6613118653235857, -0.790155012375634, -0.8910065241883235, -0.9602936856769124, -0.9955619646030643, -0.99556196460308, -0.9602936856769588, -0.891006524188399, -0.7901550123757359, -0.6613118653237104, -0.5090414157504408, -0.33873792024536953, -0.1564344650403149, 0.03141075907804128, 0.2181432413964557, 0.39714789063469697, 0.5620833778520532, 0.7071067811864792, 0.827080574274505, 0.917754625683938, 0.9759167619387196, 0.9995065603657202, 0.9876883405951433, 0.940880768954248, 0.8607420270039825, 0.7501110696305135, 0.6129070536530439, 0.45399049973962524, 0.2789911060393161, 0.0941083133186065, -0.09410831331842001, -0.2789911060391361, -0.45399049973945815, -0.6129070536528956, -0.7501110696303892, -0.8607420270038865, -0.9408807689541837, -0.987688340595113, -0.9995065603657248, -0.9759167619387591, -0.917754625684011, -0.827080574274609, -0.7071067811866105, -0.5620833778522072, -0.3971478906348683, -0.2181432413966382, -0.03141075907822863, 0.15643446504012942, 0.33873792024519245, 0.5090414157502784, 0.6613118653235683, 0.7901550123756192, 0.8910065241883118, 0.9602936856769042, 0.9955619646030599, 0.9955619646030796, 0.9602936856769623, 0.8910065241884063, 0.7901550123757468, 0.6613118653237244, 0.5090414157504576, 0.3387379202453884, 0.15643446504033526, -0.031410759078020184, -0.21814324139643454, -0.3971478906346766, -0.5620833778520343, -0.7071067811864624, -0.8270805742744911, -0.9177546256839273, -0.9759167619387126, -0.9995065603657172, -0.9876883405951444, -0.9408807689542531, -0.8607420270039915, -0.750111069630526, -0.6129070536530593, -0.4539904997396431, -0.27899110603933575, -0.09410831331862729, 0.09410831331839883, 0.27899110603911537, 0.4539904997394385, 0.6129070536528777, 0.7501110696303739, 0.8607420270038743, 0.9408807689541749, 0.9876883405951079, 0.9995065603657237, 0.975916761938762, 0.9177546256840178, 0.8270805742746193, 0.7071067811866241, 0.5620833778522235, 0.3971478906348867, 0.21814324139665814, 0.031410759078249334, -0.15643446504010866, -0.33873792024517235, -0.5090414157502596, -0.6613118653235516, -0.7901550123756051, -0.8910065241883008, -0.9602936856768968, -0.9955619646030562, -0.9955619646030798, -0.9602936856769665, -0.8910065241884143, -0.7901550123757582, -0.6613118653237389, -0.5090414157504746, -0.3387379202454073, -0.15643446504035538, 0.031410759077999534, 0.21814324139641408, 0.39714789063465705, 0.5620833778520162, 0.7071067811864465, 0.8270805742744779, 0.9177546256839174, 0.9759167619387062, 0.9995065603657146, 0.9876883405951458, 0.9408807689542583, 0.8607420270040003, 0.7501110696305382, 0.6129070536530744, 0.45399049973966055, 0.27899110603935495, 0.09410831331864758, -0.09410831331837821, -0.27899110603909516, -0.45399049973941946, -0.6129070536528605, -0.750111069630359, -0.8607420270038623, -0.9408807689541663, -0.9876883405951029, -0.9995065603657226, -0.9759167619387648, -0.9177546256840243, -0.8270805742746294, -0.7071067811866373, -0.5620833778522395, -0.39714789063490485, -0.21814324139667782, -0.031410759078269845, 0.156434465040088, 0.3387379202451523, 0.509041415750241, 0.6613118653235349, 0.790155012375591, 0.8910065241882899, 0.9602936856768892, 0.9955619646030524, 0.9955619646030798, 0.9602936856769703, 0.8910065241884217, 0.7901550123757692, 0.6613118653237531, 0.5090414157504912, 0.3387379202454259, 0.15643446504037536, -0.03141075907797891, -0.2181432413963936, -0.3971478906346374, -0.5620833778519982, -0.7071067811864308, -0.8270805742744649, -0.9177546256839076, -0.9759167619386999, -0.9995065603657121, -0.987688340595147, -0.9408807689542634, -0.860742027004009, -0.7501110696305502, -0.6129070536530894, -0.453990499739678, -0.2789911060393742, -0.09410831331866795, 0.09410831331835742, 0.2789911060390746, 0.4539904997394, 0.6129070536528427, 0.7501110696303436, 0.8607420270038497, 0.9408807689541572, 0.9876883405950976, 0.9995065603657212, 0.9759167619387672, 0.9177546256840307, 0.8270805742746394, 0.7071067811866506, 0.5620833778522556, 0.3971478906349232, 0.2181432413966977, 0.03141075907829058, -0.15643446504006714, -0.33873792024513205, -0.5090414157502221, -0.661311865323518, -0.7901550123755768, -0.8910065241882787, -0.9602936856768817, -0.9955619646030486, -0.9955619646030799, -0.9602936856769744, -0.8910065241884297, -0.7901550123757808, -0.6613118653237677, -0.5090414157505085, -0.33873792024544525, -0.15643446504039596, 0.03141075907795776, 0.21814324139637262, 0.3971478906346173, 0.5620833778519798, 0.7071067811864147, 0.8270805742744516, 0.9177546256838977, 0.9759167619386937, 0.9995065603657097, 0.9876883405951487, 0.9408807689542689, 0.8607420270040181, 0.7501110696305627, 0.6129070536531048, 0.45399049973969585, 0.2789911060393938, 0.09410831331868857, -0.09410831331833647, -0.27899110603905414, -0.4539904997393806, -0.6129070536528252, -0.7501110696303285, -0.8607420270038376, -0.9408807689541484, -0.9876883405950925, -0.9995065603657198, -0.9759167619387698, -0.917754625684037, -0.8270805742746494, -0.7071067811866638, -0.5620833778522717, -0.3971478906349415, -0.21814324139671767, -0.03141075907831148, 0.1564344650400461, 0.33873792024511157, 0.5090414157502028, 0.6613118653235008, 0.7901550123755622, 0.8910065241882672, 0.9602936856768737, 0.9955619646030445, 0.9955619646030797, 0.960293685676978, 0.8910065241884371, 0.7901550123757914, 0.6613118653237815, 0.509041415750525, 0.33873792024546373, 0.15643446504041586, -0.031410759077937195, -0.2181432413963521, -0.39714789063459754, -0.5620833778519614, -0.7071067811863984, -0.827080574274438, -0.9177546256838872, -0.9759167619386868, -0.9995065603657066, -0.9876883405951494, -0.9408807689542735, -0.8607420270040266, -0.7501110696305745, -0.6129070536531196, -0.45399049973971306, -0.2789911060394129, -0.09410831331870889, 0.09410831331831568, 0.27899110603903354, 0.453990499739361, 0.6129070536528073, 0.750111069630313, 0.8607420270038251, 0.9408807689541392, 0.9876883405950869, 0.9995065603657182, 0.9759167619387721, 0.9177546256840432, 0.8270805742746592, 0.7071067811866769, 0.5620833778522876, 0.3971478906349597, 0.21814324139673746, 0.03141075907833216, -0.15643446504002523, -0.3387379202450913, -0.5090414157501839, -0.661311865323484, -0.7901550123755479, -0.8910065241882559, -0.9602936856768657, -0.9955619646030401 ], "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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": [ "iq_experiment.compiled_program.render(\n", " channel_subplots=False,\n", " lo_frequency=5e9,\n", " sweep_index=1,\n", " sample_rate=5e9,\n", ")" ] }, { "cell_type": "raw", "id": "e607370d", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "To execute this experiment, we can simply run" ] }, { "cell_type": "code", "execution_count": 5, "id": "0bb7c4e8", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:14:32.030773Z", "iopub.status.busy": "2024-10-11T06:14:32.030079Z", "iopub.status.idle": "2024-10-11T06:14:32.107725Z", "shell.execute_reply": "2024-10-11T06:14:32.106857Z" } }, "outputs": [], "source": [ "if run_on_hw:\n", " iq_experiment.execute()\n", "else:\n", " # load in a previously executed version of this experiment\n", " iq_experiment = qcs.load(\"IQDistribution.qcs\")" ] }, { "cell_type": "raw", "id": "6fd0db9a", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "For the purposes of this demonstration, we added a second \"ancilla\" qubit to the\n", "IQ distribution program and connected the physical output channels for our qubit to\n", "the digizer associated with the ancilla to allow us to capture the full pulse\n", "sequence." ] }, { "cell_type": "code", "execution_count": 6, "id": "4eac7a1b", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:14:32.111763Z", "iopub.status.busy": "2024-10-11T06:14:32.111418Z", "iopub.status.idle": "2024-10-11T06:14:32.125002Z", "shell.execute_reply": "2024-10-11T06:14:32.124162Z" } }, "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", " \n", " \n", " \n", " \n", "
\n", " \n", "\tkeysight-logo-svg\n", "\t\n", "\t\n", "\t\t\n", "\t\n", "\n", "\n", " \n", "
\n", " Program\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", "
Durationundefined
Layers1
Targets2
Repetitions\n", " Sweep with 2 repetitions\n", "
\n", " Associations\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
rx_anglesArray(name=scan_values, shape=(2, 1), dtype=float, unit=none)
\n", " Repeat with 1 repetitions\n", "
\n", "
\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", "
Durationundefined
\n", "
\n", "\n", "
\n", "
\n", "
\n", " qudits\n", " \n", " 0\n", " \n", " \n", "
\n", " RX\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate RX on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=rx_angles, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\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" ], "text/plain": [ "" ] }, "metadata": { "text/html": { "isolated": true } }, "output_type": "display_data" } ], "source": [ "iq_experiment.draw()" ] }, { "cell_type": "code", "execution_count": 7, "id": "708d897c", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:14:32.128343Z", "iopub.status.busy": "2024-10-11T06:14:32.128022Z", "iopub.status.idle": "2024-10-11T06:14:32.159879Z", "shell.execute_reply": "2024-10-11T06:14:32.158925Z" } }, "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", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \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\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", "
Duration130 ns
Layers1
Targets4
Repetitions\n", " Sweep with 2 repetitions\n", "
\n", " Associations\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
rx_anglesArray(name=scan_values, shape=(2, 1), dtype=float, unit=none)
\n", " Repeat with 1 repetitions\n", "
\n", "
\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", "
Duration130 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=_implicit, value=None, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=rx_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=rx_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 ('xy_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationMax(ScalarRef(name=readout_pulse_duration, value=100 ns, dtype=float, unit=s), ScalarRef(name=acquisition_duration, value=100 ns, dtype=float, unit=s))
\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=xy_pulse_durations, value=30 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", " 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=measurement_phase, 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=0 s, 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=xy_pulse_durations, value=30 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=0 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=40 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=40 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" ], "text/plain": [ "" ] }, "metadata": { "text/html": { "isolated": true } }, "output_type": "display_data" } ], "source": [ "iq_experiment.compiled_program.draw()" ] }, { "cell_type": "raw", "id": "989d7e0b", "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": 8, "id": "3d414c6a", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:14:32.163835Z", "iopub.status.busy": "2024-10-11T06:14:32.163480Z", "iopub.status.idle": "2024-10-11T06:14:32.424767Z", "shell.execute_reply": "2024-10-11T06:14:32.423092Z" } }, "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 (rx_angles, [0])", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ -0.0002197265566792339, 0.0013183593400754035, 0.002636718680150807, 0.004614257690263912, 0.004394531133584678, 0.0015380858967546374, 0.005493163916980848, 0.0013183593400754035, 0.0017578124534338713, -0.0030761717935092747, -0.0015380858967546374, 0.0035156249068677425, 0.0006591796700377017, -0.0035156249068677425, -0.002856445236830041, 0.0008789062267169356, -0.0004394531133584678, -0.0010986327833961695, 0.00395507802022621, -0.0008789062267169356, 0.0010986327833961695, 0.006811523257056251, -0.002636718680150807, 0.004394531133584678, -0.0006591796700377017, -0.001977539010113105, 0.0035156249068677425, -0.0013183593400754035, -0.0010986327833961695, 0.0010986327833961695, -0.002197265566792339, -0.004833984246943146, 0.0, -0.0010986327833961695, -0.002416992123471573, -0.0002197265566792339, 0.004614257690263912, 0.002636718680150807, 0.0004394531133584678, 0.00395507802022621, 0.005712890473660082, 0.004833984246943146, 0.007031249813735485, 0.00395507802022621, 0.009667968493886292, 0.005273437360301614, 0.007031249813735485, 0.010766601277282462, 0.004614257690263912, 0.004833984246943146, 0.001977539010113105, 0.0008789062267169356, 0.0002197265566792339, -0.00395507802022621, -0.001977539010113105, -0.008349609153810889, -0.010546874720603228, -0.014282226184150204, -0.008789062267169356, -0.008789062267169356, -0.016040038637584075, -0.01516113241086714, -0.006811523257056251, -0.009228515380527824, -0.010327148163923994, -0.002416992123471573, -0.006591796700377017, -0.002416992123471573, 0.001977539010113105, 0.010986327833961695, 0.007031249813735485, 0.014721679297508672, 0.013183593400754035, 0.020654296327847987, 0.015600585524225608, 0.015600585524225608, 0.020434569771168754, 0.018676757317734882, 0.02087402288452722, 0.019335936987772584, 0.007470702927093953, 0.01406249962747097, 0.005493163916980848, 0.005712890473660082, -0.005493163916980848, -0.0037353514635469764, -0.013183593400754035, -0.01010742160724476, -0.016479491750942543, -0.018896483874414116, -0.01911621043109335, -0.022631835337961093, -0.019995116657810286, -0.019555663544451818, -0.024609374348074198, -0.023291015007998794, -0.01582031208090484, -0.0129638668440748, -0.007250976370414719, 0.0032958983501885086, 0.0030761717935092747, 0.00900878882384859, 0.01582031208090484, 0.019555663544451818, 0.02812499925494194, 0.0259277336881496, 0.028784178924979642, 0.034057616285281256, 0.026147460244828835, 0.03186035071848892, 0.02812499925494194, 0.027246093028225005, 0.019775390101131052, 0.012744140287395567, 0.005273437360301614, 0.005493163916980848, -0.00395507802022621, -0.005712890473660082, -0.01010742160724476, -0.02636718680150807, -0.021752929111244157, -0.02922363203833811, -0.026806639914866537, -0.031201171048451215, -0.03098144449177198, -0.03603515529539436, -0.02746581958490424, -0.03142089760513045, -0.015600585524225608, -0.010327148163923994, -0.009667968493886292, -0.002197265566792339, 0.006811523257056251, 0.016479491750942543, 0.020434569771168754, 0.02021484321448952, 0.03142089760513045, 0.038012694305507466, 0.038012694305507466, 0.03933105364558287, 0.0388916005322244, 0.03273925694520585, 0.028564452368300408, 0.027685546141583472, 0.025708007131470367, 0.02241210878128186, 0.017578124534338713, 0.00395507802022621, 0.0002197265566792339, -0.009667968493886292, -0.01516113241086714, -0.025488280574791133, -0.02988281170837581, -0.03867187397554517, -0.03427734284196049, -0.04218749888241291, -0.037573241192149, -0.036254881852073595, -0.03713378807879053, -0.03186035071848892, -0.023950194678036496, -0.021533202554564923, -0.01406249962747097, 0.002636718680150807, 0.00791015604045242, 0.0129638668440748, 0.022851561894640326, 0.02636718680150807, 0.03427734284196049, 0.0369140615221113, 0.04108886609901674, 0.04284667855245061, 0.04548339723260142, 0.046362303459318355, 0.03647460840875283, 0.04086913954233751, 0.02988281170837581, 0.027246093028225005, 0.011865234060678631, 0.0061523435870185494, -0.004174804576905444, -0.011645507503999397, -0.018676757317734882, -0.031201171048451215, -0.039111327088903636, -0.04394531133584678, -0.043066405109129846, -0.04328613166580908, -0.04218749888241291, -0.04438476444920525, -0.03779296774882823, -0.038452147418865934, -0.02922363203833811, -0.0252685540181119, -0.007250976370414719, -0.006591796700377017, 0.009887695050565526, 0.020434569771168754, 0.026586913358187303, 0.0382324208621867, 0.03999023331562057, 0.048559569026110694, 0.04658203001599759, 0.048559569026110694, 0.0511962877062615, 0.050317381479544565, 0.04943847525282763, 0.043505858222488314, 0.028564452368300408, 0.024389647791394964, 0.011425780947320163, 0.00791015604045242, -0.007250976370414719, -0.0129638668440748, -0.028564452368300408, -0.032299803831847385, -0.039550780202262104, -0.048120115912752226, -0.04460449100588448, -0.0498779283661861, -0.0498779283661861, -0.05405273294309154, -0.041308592655695975, -0.04262695199577138, -0.030102538265055045, -0.028344725811621174, -0.01691894486430101, 0.001977539010113105, 0.009887695050565526, 0.022192382224602625, 0.026147460244828835, 0.038452147418865934, 0.04086913954233751, 0.050317381479544565, 0.05624999850988388, 0.05603027195320465, 0.055371092283166945, 0.04965820180950686, 0.04592285034595989, 0.042407225439092144, 0.031201171048451215, 0.03032226482173428, 0.01582031208090484, 0.002636718680150807, -0.002197265566792339, -0.01516113241086714, -0.02307128845131956, -0.03208007727516815, -0.04460449100588448, -0.04724120968603529, -0.057128904736600816, -0.04899902213946916, -0.05800781096331775, -0.05844726407667622, -0.04108886609901674, -0.04438476444920525, -0.029443358595017344, -0.022192382224602625, -0.012744140287395567, -0.009887695050565526, 0.005712890473660082, 0.01845703076105565, 0.027246093028225005, 0.04042968642897904, 0.04152831921237521, 0.045263670675922185, 0.05163574081961997, 0.05954589686007239, 0.058666990633355454, 0.05295410015969537, 0.04768066279939376, 0.03977050675894134, 0.038452147418865934, 0.023730468121357262, 0.01406249962747097, 0.001977539010113105, -0.006591796700377017, -0.016699218307621777, -0.02812499925494194, -0.030102538265055045, -0.03977050675894134, -0.04833984246943146, -0.05690917817992158, -0.05493163916980848, -0.05690917817992158, -0.05295410015969537, -0.042407225439092144, -0.0369140615221113, -0.036254881852073595, -0.02702636647154577, -0.009448241937207058, -0.0002197265566792339, 0.006591796700377017, 0.013403319957433268, 0.026147460244828835, 0.032958983501885086, 0.04394531133584678, 0.045263670675922185, 0.05559081883984618, 0.052075193932978436, 0.053613279829733074, 0.05339355327305384, 0.04284667855245061, 0.04460449100588448, 0.030761717935092747, 0.020434569771168754, 0.017797851091017947, 0.009667968493886292, -0.0035156249068677425, -0.013403319957433268, -0.02241210878128186, -0.03317871005856432, -0.04152831921237521, -0.04658203001599759, -0.044165037892526016, -0.05163574081961997, -0.05383300638641231, -0.04394531133584678, -0.0388916005322244, -0.04438476444920525, -0.03383788972860202, -0.0252685540181119, -0.014501952740829438, -0.00395507802022621, 0.004394531133584678, 0.014282226184150204, 0.028784178924979642, 0.03273925694520585, 0.03977050675894134, 0.04482421756256372, 0.05339355327305384, 0.05471191261312924, 0.04899902213946916, 0.04680175657267682, 0.044165037892526016, 0.03427734284196049, 0.02702636647154577, 0.022192382224602625, 0.011865234060678631, 0.008349609153810889, -0.0004394531133584678, -0.012524413730716333, -0.022192382224602625, -0.031201171048451215, -0.032958983501885086, -0.0369140615221113, -0.04438476444920525, -0.047021483129356056, -0.04570312378928065, -0.04438476444920525, -0.03669433496543206, -0.03779296774882823, -0.024609374348074198, -0.01801757764769718, -0.008349609153810889, -0.0037353514635469764, 0.0017578124534338713, 0.02021484321448952, 0.026806639914866537, 0.027905272698262706, 0.032299803831847385, 0.04328613166580908, 0.04218749888241291, 0.04152831921237521, 0.041308592655695975, 0.04658203001599759, 0.03779296774882823, 0.03603515529539436, 0.025708007131470367, 0.023291015007998794, 0.014941405854187906, 0.002856445236830041, -0.006811523257056251, -0.007470702927093953, -0.02197265566792339, -0.02812499925494194, -0.028784178924979642, -0.03581542873871513, -0.03977050675894134, -0.038452147418865934, -0.0382324208621867, -0.03669433496543206, -0.03493652251199819, -0.02922363203833811, -0.021752929111244157, -0.01691894486430101, -0.006811523257056251, 0.0, 0.0032958983501885086, 0.016479491750942543, 0.01801757764769718, 0.023950194678036496, 0.03273925694520585, 0.028564452368300408, 0.04086913954233751, 0.04218749888241291, 0.0388916005322244, 0.03779296774882823, 0.03581542873871513, 0.028564452368300408, 0.025488280574791133, 0.012304687174037099, 0.007690429483773187, 0.0037353514635469764, -0.0010986327833961695, -0.013183593400754035, -0.01010742160724476, -0.02021484321448952, -0.026586913358187303, -0.026806639914866537, -0.02812499925494194, -0.03471679595531896, -0.02746581958490424, -0.027905272698262706, -0.02197265566792339, -0.020434569771168754, -0.01625976519426331, -0.01406249962747097, -0.007250976370414719, -0.00395507802022621, 0.00791015604045242, 0.012744140287395567, 0.0129638668440748, 0.022192382224602625, 0.019555663544451818, 0.025488280574791133, 0.03164062416180968, 0.030541991378413513, 0.03098144449177198, 0.026147460244828835, 0.02416992123471573, 0.023510741564678028, 0.017138671420980245, 0.007690429483773187, 0.010546874720603228, 0.0002197265566792339, -0.002636718680150807, -0.006811523257056251, -0.0061523435870185494, -0.016699218307621777, -0.01845703076105565, -0.0129638668440748, -0.016699218307621777, -0.018237304204376414, -0.025048827461432666, -0.021752929111244157, -0.019995116657810286, -0.018896483874414116, -0.008349609153810889, -0.013403319957433268, -0.007690429483773187, -0.0037353514635469764, 0.004394531133584678, 0.009448241937207058, 0.01010742160724476, 0.018237304204376414, 0.012524413730716333, 0.018237304204376414, 0.01911621043109335, 0.02241210878128186, 0.01801757764769718, 0.019775390101131052, 0.010327148163923994, 0.010766601277282462, 0.011425780947320163, 0.009887695050565526, 0.004394531133584678, 0.006811523257056251, -0.002856445236830041, -0.0032958983501885086, -0.00900878882384859, -0.004174804576905444, -0.012084960617357865, -0.006591796700377017, -0.012084960617357865, -0.01010742160724476, -0.004833984246943146, -0.006811523257056251, -0.004394531133584678, -0.005712890473660082 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for (rx_angles, [3.1415926536])", "type": "scatter", "x0": 0, "xaxis": "x", "y": [ 0.004394531133584678, 0.005273437360301614, -0.0010986327833961695, -0.002636718680150807, 0.00395507802022621, 0.002636718680150807, 0.0013183593400754035, 0.0002197265566792339, 0.004394531133584678, -0.0035156249068677425, 0.0037353514635469764, 0.002416992123471573, -0.0002197265566792339, 0.004174804576905444, -0.0010986327833961695, 0.0035156249068677425, 0.001977539010113105, 0.004833984246943146, 0.002416992123471573, 0.0, 0.0017578124534338713, 0.004614257690263912, 0.004394531133584678, 0.001977539010113105, -0.0017578124534338713, -0.0002197265566792339, -0.00395507802022621, 0.0037353514635469764, 0.004174804576905444, -0.004174804576905444, -0.004833984246943146, 0.00395507802022621, 0.0032958983501885086, -0.0002197265566792339, -0.0037353514635469764, 0.0035156249068677425, -0.0002197265566792339, -0.0006591796700377017, 0.0015380858967546374, 0.005273437360301614, 0.00395507802022621, 0.008349609153810889, 0.008789062267169356, 0.008569335710490122, 0.010986327833961695, 0.007031249813735485, 0.0061523435870185494, 0.009667968493886292, 0.008129882597131655, 0.0061523435870185494, -0.0010986327833961695, -0.002856445236830041, -0.0032958983501885086, -0.002636718680150807, -0.0035156249068677425, -0.005712890473660082, -0.011645507503999397, -0.012744140287395567, -0.007690429483773187, -0.011645507503999397, -0.010766601277282462, -0.012084960617357865, -0.011645507503999397, -0.005273437360301614, -0.011425780947320163, -0.004614257690263912, -0.00395507802022621, -0.002416992123471573, 0.004174804576905444, 0.002197265566792339, 0.009448241937207058, 0.016479491750942543, 0.018896483874414116, 0.01801757764769718, 0.015600585524225608, 0.016479491750942543, 0.019335936987772584, 0.02021484321448952, 0.019335936987772584, 0.010986327833961695, 0.01406249962747097, 0.009667968493886292, 0.006811523257056251, -0.0002197265566792339, 0.0013183593400754035, -0.0008789062267169356, -0.005712890473660082, -0.017138671420980245, -0.01801757764769718, -0.019555663544451818, -0.025488280574791133, -0.0252685540181119, -0.019775390101131052, -0.02131347599788569, -0.01625976519426331, -0.01735839797765948, -0.012084960617357865, -0.009887695050565526, -0.004174804576905444, -0.0032958983501885086, 0.007470702927093953, 0.010327148163923994, 0.012524413730716333, 0.021093749441206455, 0.026806639914866537, 0.028784178924979642, 0.02636718680150807, 0.035156249068677425, 0.033398436615243554, 0.024609374348074198, 0.025488280574791133, 0.023291015007998794, 0.023291015007998794, 0.017138671420980245, 0.01010742160724476, -0.0002197265566792339, -0.0010986327833961695, -0.007470702927093953, -0.018676757317734882, -0.026147460244828835, -0.023510741564678028, -0.03032226482173428, -0.03471679595531896, -0.03164062416180968, -0.03559570218203589, -0.033398436615243554, -0.03317871005856432, -0.026586913358187303, -0.01691894486430101, -0.009667968493886292, -0.01625976519426331, -0.0004394531133584678, 0.010327148163923994, 0.008569335710490122, 0.023510741564678028, 0.025488280574791133, 0.026147460244828835, 0.031201171048451215, 0.03581542873871513, 0.034497069398639724, 0.04152831921237521, 0.03361816317192279, 0.032958983501885086, 0.035156249068677425, 0.020434569771168754, 0.022851561894640326, 0.008569335710490122, 0.00395507802022621, -0.001977539010113105, -0.009448241937207058, -0.016479491750942543, -0.02482910090475343, -0.0252685540181119, -0.03867187397554517, -0.03493652251199819, -0.04548339723260142, -0.04174804576905444, -0.034497069398639724, -0.034497069398639724, -0.02746581958490424, -0.023950194678036496, -0.016699218307621777, -0.010986327833961695, 0.001977539010113105, 0.007250976370414719, 0.018896483874414116, 0.021752929111244157, 0.027905272698262706, 0.0382324208621867, 0.04262695199577138, 0.04614257690263912, 0.04592285034595989, 0.04965820180950686, 0.04570312378928065, 0.04482421756256372, 0.03559570218203589, 0.02922363203833811, 0.02241210878128186, 0.014282226184150204, 0.006372070143697783, 0.002197265566792339, -0.013623046514112502, -0.021093749441206455, -0.02746581958490424, -0.034057616285281256, -0.04482421756256372, -0.04218749888241291, -0.04614257690263912, -0.04680175657267682, -0.047021483129356056, -0.04394531133584678, -0.039550780202262104, -0.025708007131470367, -0.025708007131470367, -0.009667968493886292, -0.0030761717935092747, 0.00505371080362238, 0.010986327833961695, 0.020654296327847987, 0.034057616285281256, 0.04064941298565827, 0.04833984246943146, 0.0511962877062615, 0.052514647046336904, 0.054272459499770775, 0.05295410015969537, 0.04899902213946916, 0.04042968642897904, 0.030102538265055045, 0.022631835337961093, 0.016699218307621777, 0.010327148163923994, -0.0002197265566792339, -0.017138671420980245, -0.027685546141583472, -0.032299803831847385, -0.03647460840875283, -0.04548339723260142, -0.04614257690263912, -0.05449218605645001, -0.05624999850988388, -0.045263670675922185, -0.04614257690263912, -0.037353514635469764, -0.027685546141583472, -0.018676757317734882, -0.01406249962747097, 0.0015380858967546374, 0.005493163916980848, 0.02131347599788569, 0.02702636647154577, 0.04108886609901674, 0.04724120968603529, 0.05515136572648771, 0.052514647046336904, 0.05998534997343086, 0.050317381479544565, 0.05910644374671392, 0.04328613166580908, 0.04680175657267682, 0.0382324208621867, 0.029443358595017344, 0.01845703076105565, 0.007031249813735485, -0.002197265566792339, -0.01010742160724476, -0.03032226482173428, -0.03603515529539436, -0.04196777232573368, -0.05163574081961997, -0.048120115912752226, -0.049218748696148396, -0.05559081883984618, -0.04768066279939376, -0.051416014262940735, -0.036254881852073595, -0.027246093028225005, -0.02746581958490424, -0.010546874720603228, -0.0010986327833961695, 0.010327148163923994, 0.019555663544451818, 0.02482910090475343, 0.03208007727516815, 0.04570312378928065, 0.048120115912752226, 0.05778808440663852, 0.05339355327305384, 0.05603027195320465, 0.04943847525282763, 0.05009765492286533, 0.04284667855245061, 0.03537597562535666, 0.028344725811621174, 0.011645507503999397, 0.008129882597131655, -0.008349609153810889, -0.016040038637584075, -0.023730468121357262, -0.037353514635469764, -0.04262695199577138, -0.05163574081961997, -0.04724120968603529, -0.049218748696148396, -0.05009765492286533, -0.05273437360301614, -0.04482421756256372, -0.03493652251199819, -0.034497069398639724, -0.02988281170837581, -0.01516113241086714, -0.004614257690263912, 0.008789062267169356, 0.022631835337961093, 0.03142089760513045, 0.03164062416180968, 0.041308592655695975, 0.04943847525282763, 0.053173826716374606, 0.049218748696148396, 0.05734863129328005, 0.04965820180950686, 0.04328613166580908, 0.043505858222488314, 0.03317871005856432, 0.025488280574791133, 0.016479491750942543, 0.006811523257056251, -0.0059326170303393155, -0.009667968493886292, -0.020654296327847987, -0.030541991378413513, -0.04438476444920525, -0.04328613166580908, -0.044165037892526016, -0.04768066279939376, -0.05273437360301614, -0.048120115912752226, -0.04548339723260142, -0.03977050675894134, -0.03383788972860202, -0.025708007131470367, -0.016699218307621777, -0.0035156249068677425, 0.0061523435870185494, 0.017797851091017947, 0.02636718680150807, 0.039111327088903636, 0.03999023331562057, 0.04284667855245061, 0.04790038935607299, 0.0498779283661861, 0.05581054539652541, 0.053613279829733074, 0.04328613166580908, 0.03537597562535666, 0.032958983501885086, 0.02636718680150807, 0.013183593400754035, 0.009667968493886292, -0.0030761717935092747, -0.015600585524225608, -0.021752929111244157, -0.03098144449177198, -0.032299803831847385, -0.038452147418865934, -0.04262695199577138, -0.04262695199577138, -0.04548339723260142, -0.045263670675922185, -0.036254881852073595, -0.031201171048451215, -0.026586913358187303, -0.01625976519426331, -0.011425780947320163, 0.002416992123471573, 0.009448241937207058, 0.013183593400754035, 0.0259277336881496, 0.03251953038852662, 0.041308592655695975, 0.04328613166580908, 0.04592285034595989, 0.04790038935607299, 0.04394531133584678, 0.04592285034595989, 0.04174804576905444, 0.03559570218203589, 0.03142089760513045, 0.02087402288452722, 0.010986327833961695, -0.0002197265566792339, 0.0006591796700377017, -0.01625976519426331, -0.01801757764769718, -0.023510741564678028, -0.027685546141583472, -0.03471679595531896, -0.0382324208621867, -0.035156249068677425, -0.04108886609901674, -0.03098144449177198, -0.02988281170837581, -0.03142089760513045, -0.018676757317734882, -0.01582031208090484, -0.010327148163923994, 0.002416992123471573, 0.0030761717935092747, 0.009667968493886292, 0.018896483874414116, 0.024609374348074198, 0.02988281170837581, 0.0369140615221113, 0.03581542873871513, 0.03647460840875283, 0.03581542873871513, 0.036254881852073595, 0.026586913358187303, 0.028344725811621174, 0.024609374348074198, 0.021752929111244157, 0.009887695050565526, 0.0037353514635469764, -0.005493163916980848, -0.00505371080362238, -0.015380858967546374, -0.01691894486430101, -0.026806639914866537, -0.033398436615243554, -0.03164062416180968, -0.028564452368300408, -0.032299803831847385, -0.026586913358187303, -0.02131347599788569, -0.024389647791394964, -0.020654296327847987, -0.00900878882384859, -0.008789062267169356, -0.0035156249068677425, 0.0061523435870185494, 0.009448241937207058, 0.015600585524225608, 0.020434569771168754, 0.0259277336881496, 0.028344725811621174, 0.021752929111244157, 0.025708007131470367, 0.024389647791394964, 0.03032226482173428, 0.02131347599788569, 0.02307128845131956, 0.016040038637584075, 0.018237304204376414, 0.01010742160724476, 0.004833984246943146, -0.0017578124534338713, -0.0010986327833961695, -0.009887695050565526, -0.012084960617357865, -0.013183593400754035, -0.019335936987772584, -0.015380858967546374, -0.018676757317734882, -0.023510741564678028, -0.01845703076105565, -0.01801757764769718, -0.012744140287395567, -0.005493163916980848, -0.002636718680150807, -0.00395507802022621, -0.0004394531133584678, 0.004833984246943146, 0.008349609153810889, 0.012744140287395567, 0.016699218307621777, 0.014282226184150204, 0.014941405854187906, 0.01845703076105565, 0.016040038637584075, 0.019775390101131052, 0.017138671420980245, 0.013183593400754035, 0.016699218307621777, 0.008129882597131655, 0.0037353514635469764, 0.007690429483773187, 0.0059326170303393155, 0.0032958983501885086, -0.0035156249068677425, -0.008349609153810889, -0.008129882597131655, -0.010327148163923994, -0.009228515380527824, -0.008129882597131655, -0.008569335710490122, -0.015600585524225608, -0.011645507503999397, -0.00791015604045242, -0.009667968493886292 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "name": "Re(V) for (rx_angles, [0])", "type": "scatter", "x0": 0, "xaxis": "x2", "y": [ 0.006591796700377017, 0.007250976370414719, 0.0059326170303393155, 0.007031249813735485, 0.008349609153810889, 0.006372070143697783, 0.008789062267169356, 0.005712890473660082, 0.005712890473660082, 0.00791015604045242, 0.0061523435870185494, 0.00505371080362238, 0.006591796700377017, 0.005273437360301614, 0.006372070143697783, 0.007470702927093953, 0.00505371080362238, 0.007690429483773187, 0.004833984246943146, 0.004174804576905444, 0.00791015604045242, 0.004614257690263912, 0.006591796700377017, 0.007470702927093953, 0.008349609153810889, 0.0059326170303393155, 0.0035156249068677425, 0.006591796700377017, 0.008349609153810889, 0.005493163916980848, 0.007250976370414719, 0.005493163916980848, 0.008349609153810889, 0.005273437360301614, 0.00505371080362238, 0.004833984246943146, 0.004174804576905444, 0.005493163916980848, 0.0059326170303393155, 0.007250976370414719, 0.004174804576905444, 0.008349609153810889, 0.005712890473660082, 0.007250976370414719, 0.00791015604045242, 0.006811523257056251, 0.006591796700377017, 0.004833984246943146, 0.0061523435870185494, 0.006372070143697783, 0.006811523257056251, 0.006811523257056251, 0.006372070143697783, 0.00791015604045242, 0.005493163916980848, 0.007470702927093953, 0.00505371080362238, 0.005493163916980848, 0.0059326170303393155, 0.00505371080362238, 0.004833984246943146, 0.004614257690263912, 0.002636718680150807, 0.008129882597131655, 0.0032958983501885086, 0.0059326170303393155, 0.009228515380527824, 0.007250976370414719, 0.005493163916980848, 0.0061523435870185494, 0.0032958983501885086, 0.006591796700377017, 0.004833984246943146, 0.004614257690263912, 0.007470702927093953, 0.008349609153810889, 0.0059326170303393155, 0.007250976370414719, 0.006811523257056251, 0.007470702927093953, 0.00395507802022621, 0.005273437360301614, 0.00395507802022621, 0.005712890473660082, 0.006811523257056251, 0.006591796700377017, 0.0037353514635469764, 0.0059326170303393155, 0.004833984246943146, 0.007031249813735485, 0.007470702927093953, 0.007690429483773187, 0.00395507802022621, 0.006591796700377017, 0.004833984246943146, 0.005712890473660082, 0.0035156249068677425, 0.008129882597131655, 0.00791015604045242, 0.00791015604045242, 0.007470702927093953, 0.002636718680150807, 0.007470702927093953, 0.006811523257056251, 0.004394531133584678, 0.007250976370414719, 0.006591796700377017, 0.006372070143697783, 0.005493163916980848, 0.008129882597131655, 0.0037353514635469764, 0.005273437360301614, 0.0059326170303393155, 0.007690429483773187, 0.00900878882384859, 0.00395507802022621, 0.004394531133584678, 0.005712890473660082, 0.005273437360301614, 0.0059326170303393155, 0.004614257690263912, 0.00791015604045242, 0.005712890473660082, 0.004394531133584678, 0.007031249813735485, 0.004174804576905444, 0.005712890473660082, 0.0059326170303393155, 0.0037353514635469764, 0.0059326170303393155, 0.005273437360301614, 0.008129882597131655, 0.00791015604045242, 0.007250976370414719, 0.0061523435870185494, 0.009887695050565526, 0.007031249813735485, 0.005273437360301614, 0.00505371080362238, 0.007250976370414719, 0.004833984246943146, 0.006372070143697783, 0.006591796700377017, 0.005273437360301614, 0.004833984246943146, 0.004394531133584678, 0.006811523257056251, 0.006372070143697783, 0.008129882597131655, 0.004174804576905444, 0.007690429483773187, 0.00791015604045242, 0.004394531133584678, 0.005712890473660082, 0.007690429483773187, 0.008129882597131655, 0.005273437360301614, 0.006591796700377017, 0.005712890473660082, 0.0037353514635469764, 0.005493163916980848, 0.006372070143697783, 0.004174804576905444, 0.0061523435870185494, 0.00395507802022621, 0.006591796700377017, 0.007690429483773187, 0.007470702927093953, 0.00505371080362238, 0.008129882597131655, 0.007250976370414719, 0.008129882597131655, 0.006811523257056251, 0.00395507802022621, 0.005493163916980848, 0.006591796700377017, 0.0037353514635469764, 0.005712890473660082, 0.005493163916980848, 0.004833984246943146, 0.0035156249068677425, 0.004833984246943146, 0.005493163916980848, 0.00505371080362238, 0.007250976370414719, 0.007690429483773187, 0.005712890473660082, 0.008129882597131655, 0.007031249813735485, 0.004174804576905444, 0.005493163916980848, 0.0059326170303393155, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 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 (rx_angles, [3.1415926536])", "type": "scatter", "x0": 0, "xaxis": "x2", "y": [ 0.004174804576905444, 0.008349609153810889, 0.005712890473660082, 0.0059326170303393155, 0.006372070143697783, 0.006811523257056251, 0.0059326170303393155, 0.009887695050565526, 0.004174804576905444, 0.005493163916980848, 0.0059326170303393155, 0.007031249813735485, 0.004614257690263912, 0.00900878882384859, 0.005273437360301614, 0.006591796700377017, 0.006372070143697783, 0.00900878882384859, 0.0061523435870185494, 0.008129882597131655, 0.00505371080362238, 0.004614257690263912, 0.007470702927093953, 0.005493163916980848, 0.004394531133584678, 0.00791015604045242, 0.0030761717935092747, 0.006591796700377017, 0.005493163916980848, 0.007250976370414719, 0.00395507802022621, 0.006591796700377017, 0.007470702927093953, 0.007031249813735485, 0.005493163916980848, 0.008129882597131655, 0.008129882597131655, 0.008129882597131655, 0.004614257690263912, 0.0061523435870185494, 0.006372070143697783, 0.008349609153810889, 0.0059326170303393155, 0.006372070143697783, 0.0035156249068677425, 0.002416992123471573, -0.0030761717935092747, -0.004174804576905444, -0.010766601277282462, -0.014941405854187906, -0.019555663544451818, -0.02482910090475343, -0.028564452368300408, -0.03317871005856432, -0.03867187397554517, -0.03933105364558287, -0.044165037892526016, -0.04965820180950686, -0.049218748696148396, -0.050317381479544565, -0.04724120968603529, -0.04614257690263912, -0.037353514635469764, -0.034057616285281256, -0.023510741564678028, -0.016040038637584075, -0.00505371080362238, 0.010546874720603228, 0.02197265566792339, 0.037573241192149, 0.054272459499770775, 0.0661376935604494, 0.08173827908467501, 0.09689941149554215, 0.11293945013312623, 0.12875976221403107, 0.14040526971803047, 0.1509521444386337, 0.15930175359244458, 0.167211909632897, 0.16699218307621777, 0.1685302689729724, 0.1619384722725954, 0.15798339425236918, 0.14589843363501132, 0.13293456679093651, 0.1153564422565978, 0.09953613017569296, 0.07624511516769417, 0.05383300638641231, 0.030541991378413513, 0.001977539010113105, -0.020434569771168754, -0.0505371080362238, -0.075146482384298, -0.09733886460890062, -0.1289794887707103, -0.14611816019169055, -0.17116698765312321, -0.19401854954776354, -0.20566405705176294, -0.2197265566792339, -0.22785643927636556, -0.22961425172979943, -0.23181151729659177, -0.22521972059621476, -0.2144531193189323, -0.1951171823311597, -0.17863769058021717, -0.15710448802565224, -0.13293456679093651, -0.10788573932950385, -0.08041991974459961, -0.04965820180950686, -0.019995116657810286, 0.011865234060678631, 0.03867187397554517, 0.07009277158067562, 0.09953613017569296, 0.12062987961689942, 0.1476562460884452, 0.17138671420980245, 0.1872070262907073, 0.2061035101651214, 0.2137939396488946, 0.22280272847274318, 0.2247802674828563, 0.22082518946263008, 0.2164306583290454, 0.20764159606187604, 0.19291991676436737, 0.17929687025025487, 0.15820312080904841, 0.13974609004799277, 0.1153564422565978, 0.09250488036195748, 0.07075195125071332, 0.04570312378928065, 0.02307128845131956, 0.0017578124534338713, -0.016699218307621777, -0.03713378807879053, -0.055371092283166945, -0.06965331846731715, -0.08459472432150505, -0.09667968493886292, -0.10832519244286232, -0.1120605439064093, -0.11162109079305083, -0.1146972625865601, -0.11118163767969236, -0.10590820031939074, -0.10524902064935304, -0.09470214592874981, -0.08569335710490122, -0.07470702927093953, -0.06086425620014779, -0.05075683459290303, -0.041308592655695975, -0.028784178924979642, -0.01691894486430101, -0.006591796700377017, 0.002636718680150807, 0.011645507503999397, 0.01845703076105565, 0.02307128845131956, 0.028784178924979642, 0.03383788972860202, 0.03361816317192279, 0.03471679595531896, 0.03559570218203589, 0.03471679595531896, 0.03361816317192279, 0.030541991378413513, 0.0252685540181119, 0.024389647791394964, 0.020654296327847987, 0.016479491750942543, 0.0129638668440748, 0.011425780947320163, 0.008789062267169356, 0.004394531133584678, 0.004833984246943146, 0.00505371080362238, 0.0035156249068677425, 0.006591796700377017, 0.002856445236830041, 0.0061523435870185494, 0.0059326170303393155, 0.005493163916980848, 0.002856445236830041, 0.004833984246943146, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": [ "iq_experiment.plot_trace()" ] }, { "cell_type": "raw", "id": "22fbb1a6", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "Here we can see the control pulse with amplitudes zero or one, followed by the readout\n", "pulse. Note that our local oscillator (LO) frequency was set to 5 GHz in this example.\n", "\n", "And to look at the IQ distribution, we can plot the IQ data as a scatter plot. This\n", "data was taken with a simple constant integration filter." ] }, { "cell_type": "code", "execution_count": 9, "id": "ee1e74fe", "metadata": { "execution": { "iopub.execute_input": "2024-10-11T06:14:32.430799Z", "iopub.status.busy": "2024-10-11T06:14:32.430419Z", "iopub.status.idle": "2024-10-11T06:14:32.576418Z", "shell.execute_reply": "2024-10-11T06:14:32.575488Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "hovertemplate": "(%{x}, %{y})", "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "marker": { "color": "#ff005c", "symbol": "circle" }, "mode": "markers", "name": "I/Q for (rx_angles, [0])", "showlegend": true, "type": "scatter", "x": [ 0.01219253507739875 ], "xaxis": "x", "y": [ 0.0 ], "yaxis": "y" }, { "hovertemplate": "(%{x}, %{y})", "legendgroup": "ancilla, labels: (1,)", "legendgrouptitle": { "text": "ancilla, labels: (1,)" }, "marker": { "color": "#00d539", "symbol": "square" }, "mode": "markers", "name": "I/Q for (rx_angles,
[3.1415926536])", "showlegend": true, "type": "scatter", "x": [ 0.011778258965326442 ], "xaxis": "x", "y": [ 0.0 ], "yaxis": "y" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "ancilla, labels: (1,)", "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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "#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": "I" } }, "yaxis": { "anchor": "x", "automargin": true, "domain": [ 0.0, 1.0 ], "nticks": 12, "title": { "text": "Q" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "iq_experiment.plot_iq(channels=qcs.Qudits(1, \"ancilla\"), plot_type=\"scatter\")" ] } ], "metadata": { "jupytext": { "cell_metadata_filter": "nbsphinx,raw_mimetype,-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.9.6" } }, "nbformat": 4, "nbformat_minor": 5 }