InterpolateGeneratorSystems function

Warning

This documentation refers to the Classic QDK, which has been replaced by the Modern QDK.

Please see https://aka.ms/qdk.api for the API documentation for the Modern QDK.

Namespace: Microsoft.Quantum.Simulation

Package: Microsoft.Quantum.Standard

Returns a TimeDependentGeneratorSystem representing the linear interpolation between two GeneratorSystems.

function InterpolateGeneratorSystems (generatorSystemStart : Microsoft.Quantum.Simulation.GeneratorSystem, generatorSystemEnd : Microsoft.Quantum.Simulation.GeneratorSystem) : Microsoft.Quantum.Simulation.TimeDependentGeneratorSystem

Input

generatorSystemStart : GeneratorSystem

The start GeneratorSystem.

generatorSystemEnd : GeneratorSystem

The end GeneratorSystem.

Output : TimeDependentGeneratorSystem

A TimeDependentGeneratorSystem representing a system that is the sum of the input generator systems, with weight $(1-s)$ on generatorSystemStart and weight $s$ on generatorSystemEnd.

See Also