Is this matrix orthogonal?
Given a square matrix, a, determine whether it is orthogonal.
INPUT: a, a n x n matrix
OUTPUT: true or false
3 years ago
Solved
Column norms of a matrix
Given a matrix M, return a vector y such that for each k
y(k)=norm(M(:,k))
(y(k) is the Euclidean norm of the k-th col...
3 years ago
Solved
Group-wise Euclidean distance
*Input*:
* *x* —— An array of size *n-by-d*, where each row vector denotes a point in a d-dimensional space;
* *g* —— A gro...
Find the Oldest Person in a Room
Given two input vectors:
* |name| - user last names
* |age| - corresponding age of the person
Return the name of the ol...