Skip to content

vector transpose equality #1467

@uniment

Description

@uniment
julia> @show [1;2;3]  == [1 2 3]'
       @show [1;2;3]' == [1 2 3]''
       @show [1 2 3]  == [1;2;3]'
       @show [1 2 3]' == [1;2;3]''
[1; 2; 3] == ([1 2 3])' = false
([1; 2; 3])' == (([1 2 3])')' = true
[1 2 3] == ([1; 2; 3])' = true
([1 2 3])' == (([1; 2; 3])')' = false

Metadata

Metadata

Assignees

No one assigned

    Labels

    needs more infoClarification or a reproducible example is required

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions