JuliusMartensen
JuliusMartensen
You're right. Currently this is not supported. I assume your states are entangled in such a way that separate discovery is not possible. Otherwise you could divide the recovery process...
Possible along with #157
You can extract the rhs from the SINDy result and turn it into a separate equation manually via MTK. I guess if we automate this, we would run into an...
I'll try to have a look later on today.
Hey! Sorry for not being too responsive. I had a lot on my plate. Soo, starting from your recent example with slight modifications ```julia using ModelingToolkit @parameters t p[1:2] @variables...
Your first example is indeed an issue. I assumed that a `Basis` should always be created with `Array{Operation}`. Since the output of the equations is an `Expression`, simply converting this...
Circling back to the original question: I think we should allow something like a `recover_basis(result)` or similar to extract partly complete results. Maybe this work? :)
Currently, we assume(d) the input is `Real`. A quick fix would be to compare the magnitude and truncation: ```Julia function truncated_svd(A::AbstractMatrix{T}, truncation::Real) where T truncation*maximum(S)) U = U[:, r] S...
Yes! https://github.com/Hua-Zhou/ConstrainedLasso.jl
I've started on doing this, but I have to dig a little deeper to get the portioning right.