What is the best way to construct a matrix whose elements are exactly their indices in Matlab?
EDIT: The existing answers to this question is applicable to how to construct a matrix whose elements are functions of their indices. So I added that to the question title.
The format can be either a matrix with vectors as elements, or as two matrices each storing one index.
At the end, I would like to create a matrix whose elements are functions of their indices. So an efficient method for that (but possibly different) is very much appreciated. Any comment on efficiency is welcomed.
The size of matrices tends to be large (dimension of hundreds squared at the minimum) for my applications. As a result, methods that take advantage of native Matlab functions are probably much better than for/while loops.
For example, for a matrix of size [2 2], I would like to make either
IND =
[1 1] [1 2]
[2 1] [2 2]
or
X =
1 1
2 2
Y =
1 2
1 2
At the end, I am hoping to do something like
matrixIneed = arrayfun(@(s)..., IND)
where s is a vector of size 2, or
matrixIneed = arrayfun(@(i,j)..., X,Y)
The latter is preferred.
EDIT: A note about accepted answer.
I have accepted Andrew's answer because it is intuitive to me and the code seems quick (at least to me).
If you ever Google an answer to this question, you are likely concerned about performance like I do. (Otherwise if not for best practice, anyone can think of a double loop to accomplish the task.)
If so, you are encouraged to examine Andrew's comment on the reshape()
function and Rody's answer about the performance of meshgrid()
and loops
.
Nevertheless, thewaywewalk's solution with meshgrid()
is a helpful example to learn the meshgrid()
function. And it is useful in many other Matlab functions.
Jigg's repmat()
solution may help you too.