How to find (0,0) in a meshgrid?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Julian Blackthorne
le 1 Sep 2021
Modifié(e) : Julian Blackthorne
le 1 Sep 2021
Is there a way to find the origin (0,0), without using a for loop for the meshgrid generated below?
ii = -15:15
jj = -10:10
[a,b] = meshgrid(ii,jj);
figure(1)
scatter(a(:), b(:), '.', 'k');
1 commentaire
Réponse acceptée
KSSV
le 1 Sep 2021
x = -10:1:10 ;
y = -5:1:5 ;
[X,Y] = meshgrid(x,y) ;
idx = knnsearch([X(:) Y(:)],[0 0]) ;
plot(X,Y,'.r')
hold on
plot(X(idx),Y(idx),'ob')
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Surface and Mesh 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!