Is there a easy way how to produce following matrix:
a =
4 5 6 7
3 4 5 6
2 3 4 5
1 2 3 4
which is a projection of vector [1 2 3 4 5 6 7] along diagonal?
thanks
|
|
|
You can do this using the functions HANKEL and FLIPUD:
Or using the functions TOEPLITZ and FLIPLR:
You could also generalize these solutions to an arbitrary vector where you have chosen the center point at which to break the vector. For example:
The above example places the first three elements of the vector running up the first column and the last four elements of the vector running along the first row. |
||||
|
|
|
Consider this alternative solution:
The corresponding general solution which accepts any vector and any column length:
with a sample output:
|
||||
|
|