Hello. How to create such a matrix?

2 views (last 30 days)
1 0 2 0 ..
0 2 0 3 ..
2 0 3 0 ..
0 3 0 4 ..
3 0 4 0 ..
: : : :
  1 Comment
Stephen23
Stephen23 on 10 Dec 2018
@Azad Asadov: you tagged your question with "infinite matrix", which of course cannot be stored on any computer in the world.

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 10 Dec 2018
Another way:
c = [1 0 2 0 3];
r = [3 0 4 0];
h = hankel(c,r)
You'll see
h =
1 0 2 0
0 2 0 3
2 0 3 0
0 3 0 4
3 0 4 0

More Answers (1)

Image Analyst
Image Analyst on 10 Dec 2018
Try this:
m = [...
1 0 2 0; ...
0 2 0 3; ...
2 0 3 0; ...
0 3 0 4; ...
3 0 4 0]

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!