Skip to content

ProbeGetDirectionalData

TSGut edited this page Jan 17, 2018 · 7 revisions

ProbeGetDirectionalData grabs the data produced by the directional scans via ProbeDirectionalScan. Naturally, this means ProbeDirectionalScan has to be run before executing ProbeGetDirectionalData.

This command is primarily intended to be used to generate customized plots for directional scans instead of resorting to the automatic plots.

This method admits no arguments nor options.

Example

Fuzzy 2-sphere

<< BProbeM`

(* Initialization *)
t = PauliMatrix[{1,2,3}];
ProbeInit[t];

ProbeDirectionalScan[0.1,StepNumber->500,ShowAutoPlot->False];
(* Since we disabled ShowAutoPlot, this will execute without any output. *)

plist=ProbeGetDirectionalData[];
(* This will save the directional scan plot data into plist. *)

ListPlot[plist,PlotLabel->"This can be fully customized like any Mathematica ListPlot"]
(* Print a customized ListPlot *)

ListLinePlot[plist,PlotLabel->"This can be fully customized as well"]
(* For sufficiently dense stepsize and stepnumber a ListLinePlot can make sense *)