Borrar filtros
Borrar filtros

How to store a domain in a matrix?

2 visualizaciones (últimos 30 días)
Jacob
Jacob el 11 de Abr. de 2014
Comentada: Jacob el 11 de Abr. de 2014
With this domain:
xcoords=-0.2:0.01:1.2; (numel(xcoords)=141)
ycoords=-0.7:0.1:0.7; (numel(ycoords)=15)
How can i store all the points 2115 points(x,y) of the domain in a an array(2115,2)?

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 11 de Abr. de 2014
xcoords=-0.2:0.01:1.2;
ycoords=-0.7:0.1:0.7;
[x,y]=meshgrid(xcoords,ycoords);
out=[x(:) y(:)];
size(out)

Más respuestas (1)

Walter Roberson
Walter Roberson el 11 de Abr. de 2014
[X, Y] = ndgrid(xcoords, ycoords);
DesiredArray = [X(:), Y(:)];

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by