Indexing of a temporary array.

x=(meshgrid([1 2 3],[1 2 3]).*meshgrid([1 2 3],[1 2 3])')
x=x(:)'
Is it possible to carry out the above 2 operations in a single line code. Or in other works is there a way to go around the restriction in Matlab 'A temporary array cannot be indexed'.? Thanks in Advance.

 채택된 답변

Walter Roberson
Walter Roberson 2012년 10월 20일

0 개 추천

x = reshape( (meshgrid([1 2 3],[1 2 3]).*meshgrid([1 2 3],[1 2 3])'), 1, []);

추가 답변 (1개)

Matt J
Matt J 2012년 10월 20일
편집: Matt J 2012년 10월 21일

0 개 추천

x=kron(1:3,1:3);

카테고리

도움말 센터File Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품

태그

Community Treasure Hunt

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

Start Hunting!

Translated by