This code gives result as given below on my computer
Needs["LCE`"]; (*or*) Needs["lce`"];
F[{x_, y_, z_}] := {16 (y - x), x (45.92 - z) - y, x y - 4 z};
LCEsC[F, {19, 20, 50}, 0.1, 800, 20, 0.02]
LCEsC[F, {19, 20, 50}, 0.1, 800, 20, 0.02, LCEsPlot -> True]
{{1.50085, 0.00327127, -22.4872}, 2.06689}
However, it should have been as shown below as mentioned in the tutorial.
How can I edit it? PLEASE GUIDE ME


Show[ LCEsC[F, {19, 20, 50}, 0.1, 800, 20, 0.02, LCEsPlot -> True], PlotRange -> All]– LouisB Mar 12 '22 at 11:19LCEpackage, the one written for the Sandri methods or another one? – Mar 12 '22 at 19:27NDSolveinstead of Euler method. It should be faster / more accurate. – Chris K Mar 12 '22 at 23:17