@@ -492,7 +492,7 @@ function init_defectmat(
492492 nu, nx̂, nd = model. nu, estim. nx̂, model. nd
493493 Â, B̂u, B̂d = estim. Â, estim. B̂u, estim. B̂d
494494 # --- current state estimates x̂0 ---
495- Kŝ = [Â; spzeros (NT, nx̂* (Hp- 1 ), nx̂)]
495+ Kŝ = [Â; zeros (NT, nx̂* (Hp- 1 ), nx̂)]
496496 # --- previous manipulated inputs lastu0 ---
497497 Vŝ = repeat (B̂u, Hp)
498498 # --- decision variables Z ---
@@ -508,10 +508,9 @@ function init_defectmat(
508508 iCol = (1 : nx̂) .+ nx̂* (j- 1 ) .+ nu* Hc
509509 Eŝ[iRow, iCol] = Â
510510 end
511- Eŝ = sparse (Eŝ)
512511 # --- current measured disturbances d0 and predictions D̂0 ---
513- Gŝ = [B̂d; spzeros (NT, (Hp- 1 )* nx̂, nd)]
514- Jŝ = [spzeros (nx̂, nd* Hp); repeatdiag (B̂d, Hp- 1 ) spzeros (NT, nx̂* (Hp- 1 ), nd)]
512+ Gŝ = [B̂d; zeros (NT, (Hp- 1 )* nx̂, nd)]
513+ Jŝ = [zeros (nx̂, nd* Hp); repeatdiag (B̂d, Hp- 1 ) zeros (NT, nx̂* (Hp- 1 ), nd)]
515514 # --- state x̂op and state update f̂op operating points ---
516515 Bŝ = repeat (estim. f̂op - estim. x̂op, Hp)
517516 return Eŝ, Gŝ, Jŝ, Kŝ, Vŝ, Bŝ
@@ -527,10 +526,10 @@ function init_defectmat(
527526) where {NT<: Real }
528527 nx̂, nu, nd = estim. nx̂, model. nu, model. nd
529528 nZ = get_nZ (estim, transcription, Hp, Hc)
530- Eŝ = spzeros (NT, 0 , nZ)
531- Gŝ = spzeros (NT, 0 , nd)
532- Jŝ = spzeros (NT, 0 , nd* Hp)
533- Kŝ = spzeros (NT, 0 , nx̂)
529+ Eŝ = zeros (NT, 0 , nZ)
530+ Gŝ = zeros (NT, 0 , nd)
531+ Jŝ = zeros (NT, 0 , nd* Hp)
532+ Kŝ = zeros (NT, 0 , nx̂)
534533 Vŝ = zeros (NT, 0 , nu)
535534 Bŝ = zeros (NT, 0 )
536535 return Eŝ, Gŝ, Jŝ, Kŝ, Vŝ, Bŝ
0 commit comments