Skip to content

Commit

Permalink
minor optim
Browse files Browse the repository at this point in the history
  • Loading branch information
dpabon committed Oct 2, 2023
1 parent 14c88df commit 3c54de9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/space4time.jl
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,9 @@ function s4time(

#clim_var_cube_2 = permutedims(clim_var_cube_in, (3,2,1))

climvarmat = collect(reshape(clim_var_cube_in, ((winsize^2), time_n)))
climvarmat = reshape(clim_var_cube_in, ((winsize^2), time_n))

replace!(climvarmat, missing => NaN)
climvarmat = replace!(climvarmat, missing => NaN)


local_pft1 =
Expand Down

0 comments on commit 3c54de9

Please sign in to comment.