Skip to content

kron product of vector of vectors with a vector seems misordered #1443

@rapus95

Description

@rapus95
julia> kron([[1,2],[3,4]], [4,5])
4-element Array{Array{Int64,1},1}:
 [4, 8]
 [5, 10]
 [12, 16]
 [15, 20]

as far as I can tell, the order here should be

4-element Array{Array{Int64,1},1}:
 [4, 8]
 [12, 16]
 [5, 10]
 [15, 20]

Or what's wrong with my mind?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions