• Fosheze@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        5 months ago

        It’s a dynamically-sized list of objects of the same type stored contiguously in memory.

        dynamically-sized: The size of it can change as needed.

        list: It stores multiple things together.

        object: A bit of programmer defined data.

        of the same type: all the objects in the list are defined the same way

        stored contigiously in memory: if you think of memory as a bookshelf then all the objects on the list would be stored right next to each other on the bookshelf rather than spread across the bookshelf.

        • kbotc@lemmy.world
          link
          fedilink
          English
          arrow-up
          0
          ·
          5 months ago

          Dynamically sized but stored contiguously makes the systems performance engineer in me weep. If the lists get big, the kernel is going to do so much churn.

          • Killing_Spark@feddit.de
            link
            fedilink
            English
            arrow-up
            1
            ·
            5 months ago

            Contiguous storage is very fast in terms of iteration though often offsetting the cost of allocation

            • Slotos@feddit.nl
              link
              fedilink
              English
              arrow-up
              1
              ·
              5 months ago

              Modern CPUs are also extremely efficient at dealing with contiguous data structures. Branch prediction and caching get to shine on them.

              Avoiding memory access or helping CPU access it all upfront switches physical domain of computation.

      • KidnappedByKitties@lemm.ee
        link
        fedilink
        English
        arrow-up
        0
        ·
        5 months ago

        This is such an understated but useful description in this context. It’s also how I understood algebra for applied matrix computation.

        • Leate_Wonceslace@lemmy.dbzer0.com
          link
          fedilink
          English
          arrow-up
          0
          arrow-down
          1
          ·
          edit-2
          5 months ago

          I was just coming down from THC when I wrote this, so I’m extra jazzed you liked it. 😁

          Edit: also, love the username.

      • Gnome Kat@lemmy.blahaj.zone
        link
        fedilink
        English
        arrow-up
        0
        ·
        5 months ago

        Its the algebraic properties that are important, not all vectors are n-tuples, eg the set of polynomials of degree less than n.

        You need a basis to coordinate a vector, you can work with vectors without doing that and just deal with the algebraic properties. The coordinate representation is dependent on the basis chosen and isn’t fundamental to the vector. So calling them n-tuples isn’t technically correct.

        You can turn them into a set of coordinates if you have a basis, but the fact that you can do that is because of the algebraic properties so it’s those properties which define what a vector is.

        • Leate_Wonceslace@lemmy.dbzer0.com
          link
          fedilink
          English
          arrow-up
          0
          arrow-down
          1
          ·
          edit-2
          5 months ago

          I think a better example to show how vectors don’t necessarily need to be what people conceptualize as n-tuples would have been the real numbers. (Of course, these can be considered 1-tuples, but the same can be said of any arbitrary set element that is not itself a tuple with more entries.) A cooler example would have been R[x] (the ring of real-valued polynomials of a single variable) especially since an isomorphic ring using n-tuples would be a more cumbersome representation of the algebra.

  • model_tar_gz@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    5 months ago

    Ooh, do tensors next!

    You should ask your biologist friend and your physicist friend and your compsci friend to debate about what vectors are. Singularities, too.

  • Yardy Sardley@lemmy.ca
    link
    fedilink
    English
    arrow-up
    1
    ·
    5 months ago

    Did nobody else’s CS department require a bunch of linear algebra courses? A vector is an element of vector space.

    • chonglibloodsport@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      5 months ago

      Not always. Any m by n matrix is also a vector. Polynomials are vectors. As are continuous functions.

      A vector is an element of a vector space over a field. These are sets which have a few operations, vector addition and scalar multiplication, and obey some well known rules, such as the existence of a zero vector (identity for vector addition), associativity and commutativity of vector addition, distributivity of scalar multiplication over vector sums, that sort of thing!

      These basic properties give rise to more elaborate concepts such as linear independence, spanning sets, and the idea of a basis, though not all vector spaces have a finite basis.

  • Kaboom@reddthat.com
    link
    fedilink
    English
    arrow-up
    0
    arrow-down
    2
    ·
    5 months ago

    A vector is a list of numbers, at its most basic. You can add a lot of extra functionality to it, but at its core, its just a list.