File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -1248,8 +1248,11 @@ uncertainFnPlot :: ∀ m . (SimpleSpace m, Scalar m ~ ℝ)
12481248 => (ℝ -> (m +> ℝ )) -> Shade' m -> DynamicPlottable
12491249uncertainFnPlot = case linearManifoldWitness :: LinearManifoldWitness m of
12501250 LinearManifoldWitness BoundarylessWitness -> \ mfun (Shade' mBest me)
1251- -> plot [ continFnPlot (($ mBest^+^ δm) . mfun)
1252- | δm <- normSpanningSystem' me ]
1251+ -> plot $ continFnPlot (($ mBest) . mfun)
1252+ : [ tweakPrerendered (Dia. opacity 0.2 )
1253+ $ continFnPlot (($ mBest^+^ σ*^ δm) . mfun)
1254+ | δm <- normSpanningSystem' me
1255+ , σ <- [- 1 ,1 ] ]
12531256
12541257linregressionPlot :: ∀ x m y . ( SimpleSpace m , Scalar m ~ ℝ , y ~ ℝ , x ~ ℝ )
12551258 => (x -> (m +> y )) -> [(x , Shade' y )]
You can’t perform that action at this time.
0 commit comments