Skip to content

Commit 748c4ce

Browse files
committed
RM: where T from _mat_mult_rm_nan definition
1 parent 34701f8 commit 748c4ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/data.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ end
109109
_sum_rm_nan(X::Vector) = sum([X[(!).(isnan.(X))]..., 0.0])
110110

111111

112-
""
113-
function _mat_mult_rm_nan(A::Matrix, B::Union{Matrix, LinearAlgebra.Adjoint}) where T
112+
"matrix multiplication removing NaN values"
113+
function _mat_mult_rm_nan(A::Matrix, B::Union{Matrix, LinearAlgebra.Adjoint})
114114
N, A_ncols = size(A)
115115
B_nrows, M = size(B)
116116
@assert(A_ncols==B_nrows)

0 commit comments

Comments
 (0)