503
top 50 comments
sorted by: hot top controversial new old
[-] SpaceNoodle@lemmy.world 122 points 2 months ago

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

[-] fossilesque@mander.xyz 72 points 2 months ago
[-] ipha@lemm.ee 101 points 2 months ago
[-] fossilesque@mander.xyz 40 points 2 months ago

So is a wedding gift registry.

[-] whereBeWaldo@lemmy.dbzer0.com 6 points 2 months ago* (last edited 2 months ago)

No, this is Patrick!

[-] Fosheze@lemmy.world 81 points 2 months ago* (last edited 2 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 15 points 2 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 15 points 2 months ago

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

[-] Slotos@feddit.nl 7 points 2 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.

[-] IAmVeraGoodAtThis@lemmy.blahaj.zone 7 points 2 months ago* (last edited 2 months ago)

Which is why you should:

  1. Preallocate the vector if you can guesstimate the size
  2. Use a vector library that won't reallocate the entire vector on every single addition (like Rust, whose Vec doubles in size every time it runs out of space)

Memory is fairly cheap. Allocation time not so much.

[-] yetiftw@lemmy.world 4 points 2 months ago

matlab likes to pick the smallest available spot in memory to store a list, so for loops that increase the size of a matrix it's recommended to preallocate the space using a matrix full of zeros!

load more comments (2 replies)
[-] SpaceNoodle@lemmy.world 3 points 2 months ago

Many things like each other lined up in a row, and you can take some away or put more in.

load more comments (1 replies)
[-] Leate_Wonceslace@lemmy.dbzer0.com 25 points 2 months ago

No, it's an n-tuple with certain algebraic properties.

[-] KidnappedByKitties@lemm.ee 7 points 2 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 4 points 2 months ago* (last edited 2 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.

[-] GnomeKat@lemmy.blahaj.zone 5 points 2 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.

load more comments (1 replies)
load more comments (6 replies)
[-] yardy_sardley@lemmy.ca 76 points 2 months ago

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

[-] baseless_discourse@mander.xyz 12 points 2 months ago* (last edited 2 months ago)

Sets are just objects in the category of Set.

[-] droans@lemmy.world 11 points 2 months ago

That is quite possibly the least helpful answer you could give.

[-] kureta@lemmy.ml 9 points 2 months ago

Also the most correct :)

[-] Cryophilia@lemmy.world 6 points 2 months ago

Q: what is a vector? A: it is a vector

[-] sexy_peach@beehaw.org 6 points 2 months ago

We do and we know this. Maybe programmers would give that answer

load more comments (1 replies)
[-] sanosuke001@lemmynsfw.com 76 points 2 months ago

What do you mean? A vector is a direction and magnitude!

[-] deaf_fish@lemm.ee 28 points 2 months ago

Maybe they mean std::vector in C++?

[-] NorthWestWind@lemmy.world 21 points 2 months ago

It's a terrible name. The math answer is what I would give.

[-] expr@programming.dev 4 points 2 months ago

It's not a terrible name, since it's derived from the mathematical construct of vectors as n-tuples. In the case of vectors in programming, n relates to the size of the underlying array, and the tuple consists of the elements of the vector.

load more comments (1 replies)
[-] ulterno@lemmy.kde.social 3 points 2 months ago

I myself was confused, when I first saw what a vector did in practice.
Really bad name.

But then I didn't take Comp Sci.

[-] Eatspancakes84@lemmy.world 5 points 2 months ago

The only correct answer for a 101 introduction. It’s an incredible powerful intuition even in contexts where vectors are seemingly used as a list of numbers.

load more comments (2 replies)
[-] model_tar_gz@lemmy.world 39 points 2 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.

[-] MonkderDritte@feddit.de 26 points 2 months ago

Singularities, too.

/dev/null

[-] NegativeInf@lemmy.world 6 points 2 months ago
[-] model_tar_gz@lemmy.world 15 points 2 months ago

It’s just a fancy list of fancy lists! :D

[-] RustyEarthfire@lemmy.world 27 points 2 months ago
[-] cerement@slrpnk.net 24 points 2 months ago

you just need to car and cdr your cons cell …

[-] muntedcrocodile@lemm.ee 20 points 2 months ago* (last edited 2 months ago)

Well mathematically isn't it an n by 1 matrix.

[-] chonglibloodsport@lemmy.world 28 points 2 months ago* (last edited 2 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.

load more comments (9 replies)
[-] onlinepersona@programming.dev 14 points 2 months ago

It's an array.

First time I heard of vectors in comp-sci was in C++. The naming still doesn't make sense to me.

Anti Commercial-AI license

load more comments (3 replies)
[-] joyjoy@lemm.ee 8 points 2 months ago

I asked my math friend. He said a vector is magnitude plus velocity.

[-] GnomeKat@lemmy.blahaj.zone 42 points 2 months ago

It should be magnitude plus orientation, not velocity. Velocity itself is a vector quantity

[-] Adalast@lemmy.world 8 points 2 months ago

As a mathematician this genuinely hurts. Lol.

[-] Kaboom@reddthat.com 4 points 2 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.

[-] holomorphic@lemmy.world 4 points 2 months ago

Functions from the reals to the reals are an example of a vector space with elements which can not be represented as a list of numbers.

load more comments (2 replies)
load more comments
view more: next ›
this post was submitted on 28 Apr 2024
503 points (96.8% liked)

Science Memes

9160 readers
2445 users here now

Welcome to c/science_memes @ Mander.xyz!

A place for majestic STEMLORD peacocking, as well as memes about the realities of working in a lab.



Rules

  1. Don't throw mud. Behave like an intellectual and remember the human.
  2. Keep it rooted (on topic).
  3. No spam.
  4. Infographics welcome, get schooled.


Sister Communities

Science and Research

Biology and Life Sciences

Physical Sciences

Humanities and Social Sciences

Practical and Applied Sciences

Memes

Miscellaneous

founded 1 year ago
MODERATORS