Tagged Questions
8
votes
6answers
1k views
Languages/Methods to Learn for Scientific Computing?:
I'm a second-semester Junior working towards a Computer Science degree with a Scientific Computing concentration and a Mathematics degree with a concentration on Applied Discrete Mathematics. So, ...
0
votes
7answers
273 views
Vector operations: vec1.dot(vec2) vs vec1 * vec2 vs dot(vec1, vec2)
What's your preferred way to implement/use vector operations?
vec1.dot(vec2)
allows to reuse vec1 but is hard to read for longer equations
dot(vec1, vec2)
A friend of mine prefers this as "dot" ...