Interpolation of data in a given area
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Lev Mihailov
le 11 Avr 2022
Réponse apportée : Walter Roberson
le 11 Avr 2022
I have 4 sets of coordinates (representing a square, I need to interpolate and get a 200x200 matrix.
%set of coordinates:
amax=1.49895;
amin=1.49747;
bmin=2.62186;
bmax=2.62471;
Заранее спасибо
0 commentaires
Réponse acceptée
Walter Roberson
le 11 Avr 2022
amax=1.49895;
amin=1.49747;
bmin=2.62186;
bmax=2.62471;
N = 200;
avec = linspace(amin, amax, N);
bvec = linspace(bmin, bmax, N);
[A, B] = meshgrid(avec, bvec);
%now demonstrate
scatter(A(:), B(:), '.')
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!