You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently had a need for these functions. I wrote a quick method (below) for my particular case, but I would be better if they were officially supported.
function Base.hcat(x::Zeros{T,2}...) where T <:Realall(xx -> xx.size[1] == x[1].size[1], x) ||throw(ArgumentError("mismatch in dimension 1"))
n =sum(xx.size[2] for xx in x)
returnZeros(x[1].size[1],n)
end
The text was updated successfully, but these errors were encountered:
I recently had a need for these functions. I wrote a quick method (below) for my particular case, but I would be better if they were officially supported.
The text was updated successfully, but these errors were encountered: