-
Currently, the Attributes class is not really designed for attribute values that are empty strings, or that contain spaces.
It might accidentally do what we expect in many cases, but it is not real…
-
Complex differentiation is one of those features that I had always planned on officially supporting in previous packages, but I never got around to grinding out the details/API consequences.
Since…
-
To access elements in a column of anyt real matrix (except a tiny one), I would likely do
```chapel
var xcolk = x[i..j, k];
....
// say
xcolk += v[i..j] * t;
....
x[i..j, k] = xcolk;
```
Thi…
-
@rkern or @moble, do either of you know why this happens?
```
import numpy as np
from clifford import Cl
layout,blades = Cl(2) # note i changed firstIdx=1 by default in Cl
locals().update(blades)…
-
# Key Question
>
> What is needed for working data structure initialization? Why isn't it working?
>
>The node and edge list and prioritization or
> sort strategy for edge representation, we…
-
Hi Team, I am comparing two list of objects using recursive comparison as follows.
```
List actual = _some list of objects_
List expected = _some list of objects_
RecursiveComparisonConfigur…
-
Unless I'm missing something in the documentation it seems that the default implementations (at least for PosteriorGP) are quite allocation heavy, e.g. when computing the mean/covariance of a GP at a …
-
After much digging and testing, it appears you are currently not supporting sparse matrix constructions for AD. Is this correct? In particular, I am in need of a MvNormal distribution that is specifi…
-
## Expected behavior and actual behavior.
I've been doing some benchmarks (see below), which lead me to the conclusion that reading x/y/z from a shapely point is extremely slow, especially via the …
-
I'm trying to find an example of how to use automatic differentiation in more complex ODE rather than those vanilla examples in the tutorials. Simple ODEs are quite easy to figure out, but I always ha…