qiskit.pulse.Schedule.append¶
-
Schedule.
append
(schedule, name=None, inplace=False)[source]¶ Return a new schedule with
schedule
inserted at the maximum time over all channels shared betweenself
andschedule
.\[t = \textrm{max}(\texttt{x.stop_time} |\texttt{x} \in \texttt{self.channels} \cap \texttt{schedule.channels})\]- Parameters
schedule (
Union
[Schedule
,Instruction
]) – Schedule to be appended.name (
Optional
[str
]) – Name of the newSchedule
. Defaults to name ofself
.inplace (
bool
) – Perform operation inplace on this schedule. Otherwise return a newSchedule
.
- Return type
Schedule