Skip to content

ProbeGetGroundStates

TSGut edited this page Jan 17, 2018 · 3 revisions

ProbeGetGroundstates returns a List of ground states corresponding to all points given by ProbeGetPoints. Hence the same output is generated by:

ProbeGetGroundstate[#]& /@ ProbeGetPoints[]

However, ProbeGetGroundstates is almost always faster since it uses parallelized computing techniques and a simple caching mechanism.

This method admits no arguments nor options.

Example

<< BProbeM`

t = PauliMatrix[{1,2,3}];
ProbeInit[t];

(* calculate some points *)
ProbeScan[StepSize->0.5];

(* retrieve all quasi-coherent state corresponding to *)
(* calculated points *)
gstates = ProbeGetGroundstates[];