Interpolation of data in a given area

조회 수: 2 (최근 30일)
Lev Mihailov
Lev Mihailov 2022년 4월 11일
답변: Walter Roberson 2022년 4월 11일
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;
Заранее спасибо

채택된 답변

Walter Roberson
Walter Roberson 2022년 4월 11일
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개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by