You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> b =rand(1); @system(x'= x + b)
AffineContinuousSystem{Float64,IdentityMultiple{Float64},Array{Float64,1}}([1.0], [0.4376218479701559])
julia> b =rand(10); @system(x'= x + b, dim=10)
ERROR: AssertionError:checksquare(A) ==length(c)
Stacktrace:
[1] AffineContinuousSystem(::IdentityMultiple{Float64}, ::Array{Float64,1}) at /home/mforets/.julia/dev/MathematicalSystems/src/systems.jl:189
[2] top-level scope at REPL[4]:1
julia> b =rand(10); @system(x'= x + b)
ERROR: AssertionError:checksquare(A) ==length(c)
Stacktrace:
[1] AffineContinuousSystem(::IdentityMultiple{Float64}, ::Array{Float64,1}) at /home/mforets/.julia/dev/MathematicalSystems/src/systems.jl:189
[2] top-level scope at REPL[5]:1
The text was updated successfully, but these errors were encountered:
This is a follow up of #223
The text was updated successfully, but these errors were encountered: