-
Not sure about this but just wondering why you divide by the mean here:
```
% normalize the collumns of the null space of Theta to use in the
% initial conditoin for ADM search
for ii = 1:size(n…
-
Currently, it is not possible to combine an offset and an existing capacity when investing into a flow. This makes sense, if you think of the offset as the abscissa of the linear cost function. If the…
-
Hi, I am in Russ' underactuated robotics class and I was told I should post this here.
In our problem set, we are simulating a system with two worlds and a rocket. I specify an initial condition a…
-
MOSEK rejects models that contain a quadratic objective and a quadratic constraint:
```
var x {1..7} >= 0;
minimize qobj: sum {j in 1..7} x[j]^2;
subj to qconstr: sum {j in 1..7} x[j]^2 = the obje…
-
It would be nice to demonstrate how the synthesized controllers can be simulated in TuLiP in one of the examples. I have the following piece of code for the `continuous.py` but there are some hacky pa…
-
In our other comically long conversation (https://github.com/JuliaML/Roadmap.jl/issues/8#issuecomment-229838082), we came up with the following types:
```
abstract Cost
abstract Loss
-
There are too many dependencies, which slows down the user experience. Perhaps we should use v1.9 selective load? Perhaps require for < v1.9?
-
Hi @mforets and @schillic. Sorry for being so slow at this but I would like to finally start integrating this package.
I think what's hard for this package is to decide what could be on it.
The obvi…
-
Even if I set my ssm with gaussian_id emissions as follows, I get very different results each time I run the code:
`rslds = ssm.SLDS(D_obs, K, D_latent, transitions="recurrent_only", dynamics="gau…
-
In your code 'fair_glm.py' line 126, how do you guarantee the matrix is invertible? Thanks!