For a given N, I need to create the following matrix:

I have understood that :
from scipy.linalg import toeplitz
y=toeplitz(range(1,N))
will create a Toeplitz matrix. But it is not the exact matrix given above.
Appreciate your help
Copyright © 2021 Jogjafile Inc.
From the docs:
Thus you need to pass the first column and the first row like this: