We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Array(Float64, ...)
Array{Float64}(...)
1 parent a10603e commit 9053a75Copy full SHA for 9053a75
src/ACME.jl
@@ -563,11 +563,11 @@ function run!(model::DiscreteModel, u::AbstractMatrix{Float64})
563
if size(u, 1) ≠ nu(model)
564
throw(DimensionMismatch("input matrix has $(size(u,1)) rows, but model requires $(nu(model)) inputs"))
565
end
566
- y = Array(Float64, ny(model), size(u)[2])
567
- ucur = Array(Float64, nu(model))
568
- p = Array(Float64, np(model))
569
- ycur = Array(Float64, ny(model))
570
- xnew = Array(Float64, nx(model))
+ y = Array{Float64,2}(ny(model), size(u)[2])
+ ucur = Array{Float64,1}(nu(model))
+ p = Array{Float64,1}(np(model))
+ ycur = Array{Float64,1}(ny(model))
+ xnew = Array{Float64,1}(nx(model))
571
@showprogress 1 "Running model: " for n = 1:size(u)[2]
572
# copy!(p, model.dq * model.x + model.eq * u[:,n])
573
copy!(ucur, 1, u, (n-1)*nu(model)+1, nu(model))
0 commit comments