nengolib icon indicating copy to clipboard operation
nengolib copied to clipboard

Nengo library of additional extensions

Results 63 nengolib issues
Sort by recently updated
recently updated
newest added

Test on various example networks. Advise against using `nengolib.patch`.

enhancement
meta

Work in progress for #8.

api
work in progress

And the same for tau close to 0.

bug
work in progress

Sometimes `ss2sim` (via `LinearSystem`) will destabilize `sys` when discretizing it with the given `dt`. This occurs for larger order delays that are not properly balanced / normalized. A workaround is...

bug

Currently this is not done as a hack in order to prevent `num` and `den` from being frozen. But this means that: ``` nengolib.signal.s._params ``` will raise an exception, because:...

bug
enhancement

Would be good to get this unit test passing: ```def test_zerodim_system(): sys = LinearSystem(1) ss_sys = LinearSystem(sys.ss) assert len(ss_sys) == 0 ``` but the dimension can be 0 or 1...

enhancement
testing

And document limitations in related functions / methods.

enhancement
documentation
testing

Currently only checks that `isinstance(pre, nengo.Ensemble)`.

enhancement

This may be useful for analysis. A work-in-progress: ``` import numpy as np from scipy.misc import factorial, pade # Taylor series c = 1. / factorial(np.arange(10)) # Array representing the...

documentation

i.e., `F(H(s)^{-1})` as a `LinearSystem`

enhancement