generate grid and coordinates in a rectangle
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Davide Cerra
el 25 de Jun. de 2019
Comentada: KSSV
el 25 de Jun. de 2019
i have sides of a rectangle as input and i want to generate a grid that gives as output the coordinates of the internal points.
2 comentarios
Respuesta aceptada
KSSV
el 25 de Jun. de 2019
Editada: KSSV
el 25 de Jun. de 2019
Read about meshgrid. Let L and B be the length and breadth of the rectangle.
L = 2. ;
B = 1. ;
m = 100; n = 100 ;
l = linspace(0,L,m) ;
b = linspace(0,B,n) ;
[X,Y] = meshgrid(l,b) ;
mesh(X,Y)
view(2)
If you have the data points for the opposite sides or for the four side, read about transfinite interpolation.
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Interpolation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!