Problem 52193. Generate a matrix as follows
write a Function that gives like the following for a random n:
n=2
ans= [ 0 1
1 0]
n=6
ans=
[ 0 1 2 3 4 5
1 0 1 2 3 4
2 1 0 1 2 3
3 2 1 0 1 2
4 3 2 1 0 1
5 4 3 2 1 0]
Goodluck
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers30
Suggested Problems
-
Create a vector whose elements depend on the previous element
773 Solvers
-
Split a string into chunks of specified length
2039 Solvers
-
Output any real number that is neither positive nor negative
407 Solvers
-
Is this triangle right-angled?
6363 Solvers
-
Divide elements by sum of elements
138 Solvers
More from this Author5
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!