Effacer les filtres
Effacer les filtres

generate grid and coordinates in a rectangle

31 vues (au cours des 30 derniers jours)
Davide Cerra
Davide Cerra le 25 Juin 2019
Commenté : KSSV le 25 Juin 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 commentaires
Himanshu Rai
Himanshu Rai le 25 Juin 2019
Can you illustrate with an example, what exactly do you want ?
Davide Cerra
Davide Cerra le 25 Juin 2019
given the two sides i want to generate a grid and extract the coordinates of each internal point.Untitled.jpg

Connectez-vous pour commenter.

Réponse acceptée

KSSV
KSSV le 25 Juin 2019
Modifié(e) : KSSV le 25 Juin 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 commentaires
Davide Cerra
Davide Cerra le 25 Juin 2019
how can i get the coordinates of the internal points?
KSSV
KSSV le 25 Juin 2019
X,Y after meshgrid has all the points.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Scatter Plots 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