Azzera filtri
Azzera filtri

Making matrix from coordinates

7 visualizzazioni (ultimi 30 giorni)
Ishani Mukherjee
Ishani Mukherjee il 11 Ott 2020
Commentato: Ishani Mukherjee il 11 Ott 2020
I have 460 x and y coordinates. How do I make a matrix ? Thanks in advance.

Risposte (1)

Ameer Hamza
Ameer Hamza il 11 Ott 2020
Modificato: Ameer Hamza il 11 Ott 2020
See meshgrid()
x; % vector of x-values
y; % vector of y-values
[X, Y] = meshgrid(x, y)
  5 Commenti
Ameer Hamza
Ameer Hamza il 11 Ott 2020
Something like this
x = [1,2,3];
y = [2,3,4];
[X, Y] = meshgrid(x, y);
plot(X(:), Y(:), '+')

Accedi per commentare.

Categorie

Scopri di più su Line Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by