Element-wise vector product (★)
Given two vectors x and y, compute their element-wise product z.
Thus, if x = [1 3 5] and y = [0.5 -1 2], then
z = [1*0.5...
Linear system solve
Solve a linear set of equations as described in the following link: http://www.people.virginia.edu/~teh1m/cody/linsolv1.pdf
5 days ago
Solved
Distances in a circle
A circle (360°) is given and
a row of 6 monotonic increasing numbers with the which difference from last to first value is les...