colinfang

Results 16 issues of colinfang

``` C# /// /// Initializes a new instance of the class. /// /// The number of failures (r) until the experiment stopped. Range: r ≥ 0. /// The probability (p)...

The result is correct only if I tag the matrix to be symmetric. ```julia using LinearAlgebra using ForwardDiff function f_backward(x1, x2, rho) cov = [ 1.0 rho; rho 1.0 ]...

I encountered an error in `RuinedEggs.cs` Bascially, it calls `thing.AllComps.Remove(__instance); thing.AllComps.Remove(item);` in `DoTicks`. The code is triggered in the following snippet ```c# // in ThingWithComps.Tick int i = 0; for...

In https://github.com/sethaxen/ExponentialAction.jl/blob/v0.2.8/src/parameters.jl#L54 ``` Aᵖ⁺¹ = A * A d = t_norm * sqrt(opnormest1(A)) ``` Should `A` here be `Aᵖ⁺¹` instead? Because we are calculating the 1-norm for `A^2` as in...

The screenshot shows the spell check from `.ipynb` & `.py` ![image](https://github.com/streetsidesoftware/vscode-spell-checker/assets/1499555/2596902a-551d-413d-955e-78b8085986f4) It seems `.ipynb` ignores some default libraries loaded for python file. Hence it complains about `.arange` & `dtype` in...

A simple example would be ```python import scipy` # Stub file not found for "scipy" [reportMissingTypeStubs] ``` Because the bundled `scipy-stub` has `partial\n` in a `py.typed` file If I delete...

bug
P2