complex_pwc_signal
Graph.complex_pwc_signal(moduli, phases, duration, *, name=None)
Create a complex piecewise-constant signal from moduli and phases.
Use this function to create a complex piecewise-constant signal from moduli and phases defined for each segment, in which the constant segments all have the same duration.
Parameters
- moduli (np.ndarray ( real ) or Tensor ( real )) – The moduli of the values of constant segments. These can represent either the moduli of a single sequence of segment values or of a batch of them. To provide a batch of sequences of segment values of shape , represent these moduli as a tensor of shape .
- phases (np.ndarray ( real ) or Tensor ( real )) – The phases of the complex segment values. Must have the same length as moduli (or same shape, if you’re providing a batch).
- duration (float) – The total duration of the signal.
- name (str or None , optional) – The name of the node.
Returns
The piecewise-constant function of time , satisfying for , where (where is the number of values in and ). If you provide a batch of moduli and phases, the returned Pwc represents a corresponding batch of functions .
Return type
SEE ALSO
Graph.pwc_signal
: Create Pwc signals from (possibly complex) values.
Notes
For more information on Pwc nodes see the Working with time-dependent functions in Boulder Opal topic.
Examples
Create a complex piecewise-constant signal with batched moduli and phases.
>>> moduli = np.array([[1, 2], [3, 4]])
>>> phases = np.array([[0.1, 0.2], [0.5, 0.7]])
>>> graph.complex_pwc_signal(moduli=moduli, phases=phases, duration=0.2, name="signal")
<Pwc: name="signal", operation_name="complex_pwc_signal", value_shape=(), batch_shape=(2,)>
>>> result = bo.execute_graph(graph=graph, output_node_names="signal")
>>> result["output"]["signal"]
{
'durations': array([0.1, 0.1]),
'values': array([
[0.99500417+0.09983342j, 1.96013316+0.39733866j],
[2.63274769+1.43827662j, 3.05936875+2.57687075j]
]),
'time_dimension': 1
}
See more examples in the Design robust single-qubit gates using computational graphs tutorial.