Make a vector of length N that consists of all zeros except at index k, where it has the value 1.
Example:
Input
N = 6;
k = 2;
vector = one_hot(N,k);Output
vector = [0 1 0 0 0 0]
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers539
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2821 Solvers
-
423 Solvers
-
First non-zero element in each column
965 Solvers
-
Convert a vector into a number
619 Solvers
-
find the maximum element of the matrix
542 Solvers
More from this Author56
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Good Problem
funny
Any reason why the problem template gives away half of the solution?