Skip to content

Commit

Permalink
Merge pull request #252 from James-Thorson-NOAA/hotfix
Browse files Browse the repository at this point in the history
Hotfix
  • Loading branch information
James-Thorson-NOAA authored Sep 17, 2020
2 parents 0310fff + 803598d commit e6db762
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: VAST
Type: Package
Title: Vector-autoregressive spatio-temporal (VAST) model
Version: 3.5.4
Version: 3.5.5
Date: 2020-09-16
Authors@R:
c(person(given = "James",
Expand Down
2 changes: 1 addition & 1 deletion R/make_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ function( b_i, a_i, t_i, c_iz=rep(0,length(b_i)), e_i=c_iz[,1], v_i=rep(0,length
X_gctp = aperm( outer(X_gtp,rep(1,n_c)), c(1,4,2,3) )
Works = TRUE
}
X_ip = array( X_itp[,1,], dim=dim(X_itp[c(1,3)]) )
X_ip = array( X_itp[,1,], dim=dim(X_itp)[c(1,3)] )
}
if( !is.null(X_gctp) & !is.null(X_itp) ){
if( !is.array(X_gctp) || !(all(dim(X_gctp)[1:3]==c(n_g,n_c,n_t))) ){
Expand Down

0 comments on commit e6db762

Please sign in to comment.