Symmetric matrix
You must create a n-by-n *symmetric* matrix such that A(row,col) = row/col for col >= row.
Example if n =3 :
output is :
...
6 years ago
Solved
Special matrix
Make a square matrix with this shape. For n=4
M =
1 1 0 0
1 0 1 0
0 1 0 ...
6 years ago
Solved
Better bullseye matrix
<http://www.mathworks.com/matlabcentral/cody/problems/18-bullseye-matrix Problem 18> asks to create a bullseye matrix like this:...