Skip to content

Commit a5bb86f

Browse files
authored
Merge pull request #3 from ParsaVahidi/main
Fixes minor bug in trial-based IPSID
2 parents ccf6035 + 23ddbd7 commit a5bb86f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/PSID/IPSID.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ def IPSID(
720720
w = Xk_Plus1[:n1, :] - XkP1Hat[:n1, :] # Eq.(33)
721721
else:
722722
A = np.empty([0, 0])
723-
w = np.empty([0, N])
723+
w = np.empty([0, NTot])
724724

725725
if n2 > 0:
726726
# A associated with the other states (X2)

0 commit comments

Comments
 (0)