Creating a matrix using a loop

4 vues (au cours des 30 derniers jours)
Mohammad
Mohammad le 12 Août 2013
Hi,
I am struggling with probably a very simple problem. I want to build a matrix. My X coordinate runs from -2 to 2 with increment 1 and same with Y. I want to create a matrix that will be following: x: -2 -1 0 1 2 Y: -2 -2 -2 -2 -2, then goes on X: -2 -1 0 1 2, Y= -1 -1 -1 -1 -1 and continues until X= -2 -1 0 1 2 , Y=2 2 2 2 2.
This means for same X positions Y varies from -2 to 2. I dont know how to do that. Could anybody please help me on this.
Thanks,
Rafiq

Réponse acceptée

Matt Kindig
Matt Kindig le 12 Août 2013
[xx,yy]=ndgrid( -2:1:2, -2:1:2);
xy = [xx(:), yy(:)];
x = xy(:,1);
y = xy(:,2);
  1 commentaire
Mohammad
Mohammad le 13 Août 2013
Thanks. It helped.

Connectez-vous pour commenter.

Plus de réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 12 Août 2013
Modifié(e) : Azzi Abdelmalek le 12 Août 2013
y=repmat(x,numel(x),1)
y(:,1) % the first vector y
y(:,2) % the second
% and so on

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by