필터 지우기
필터 지우기

How to interpolate 2D array from 3D array?

조회 수: 2 (최근 30일)
piston_pim_offset
piston_pim_offset 2023년 12월 15일
이동: Image Analyst 2023년 12월 29일
A=[3 4 5 6 7];
numel(X)=23;
numel(Y)=42;
There are 5 different contour data with respect to X and Y like the one belove. I have 5 different contour data of 23x42, together a 3D array of 5x23x42. There are data for the given values of A, but l need data for interpolated values of A, for example in the case of A=4.7. Then l'll plot the data corresponding to the calculated value of A.
Thanks for your help!
  댓글 수: 4
Torsten
Torsten 2023년 12월 15일
편집: Torsten 2023년 12월 15일
I don't completely understand your question.
You have contour data on an x/y/z grid of size 5x23x42 and you have a value in between the 5 x-coordinates and you want to interpolate your 5x23x42 contour data to this value to get back a 23x42 matrix ?
piston_pim_offset
piston_pim_offset 2023년 12월 15일
Yes, exactly. I have and contour plot of 23x42, and there are 5 of them wrt. 5 different values. I want to get interpolated interpolated data for every possible value of X.

댓글을 달려면 로그인하십시오.

답변 (3개)

piston_pim_offset
piston_pim_offset 2023년 12월 15일
편집: piston_pim_offset 2023년 12월 15일
AI Chat Playground gave me this answer with an error:
contourData = randn(5, 23, 42);
A = [3 4 5 6 7];
interpContourData = interp1(A, contourData, 4.7);
[X, Y] = meshgrid(1:size(interpContourData, 2), 1:size(interpContourData, 3));
contourf(X, Y, squeeze(interpContourData), 20);
Error using contourf
The size of X must match the size of Z or the number of columns of Z.

Dyuman Joshi
Dyuman Joshi 2023년 12월 15일
이동: Image Analyst 2023년 12월 29일
Try this. Though I have no idea if it does what you asked for or not.
contourData = randn(5, 23, 42);
A = [3 4 5 6 7];
interpContourData = interp1(A, contourData, 4.7);
[X, Y] = meshgrid(1:size(interpContourData, 2), 1:size(interpContourData, 3));
interpContourData = permute(interpContourData, [3 2 1]);
contourf(X, Y, squeeze(interpContourData), 20)
  댓글 수: 1
piston_pim_offset
piston_pim_offset 2023년 12월 18일
이동: Image Analyst 2023년 12월 29일
Much thanks, it worked.

댓글을 달려면 로그인하십시오.


Torsten
Torsten 2023년 12월 15일
이동: Torsten 2023년 12월 15일
contourData = randn(5, 23, 42);
x = 1:5;
y = 1:23;
z = 1:42;
X = [2.6 4.7];
contourData_interpolated = zeros(numel(X),23,42);
for j = 1:23
for k = 1:42
contourData_interpolated(:,j,k) = interp1(x,squeeze(contourData(:,j,k)),X);
end
end

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by