Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Using Griddata Plotting with plot3
1 回表示 (過去 30 日間)
古いコメントを表示
Hey, I am trying to tnterpolate 3-D scattered data using griddata, how would I accomplish it? The picture attached is the data plotted using the 'plot3' function. Thank you!
close all;
A1 = csvread('Circle6inch copy');
A2 = csvread('Circle12inchCopy');
A3 = csvread('Circle18inchCopy');
r = [6,12,18];
x = [cos(A1(:,1))*r(1); cos(A2(:,1))*r(2); cos(A3(:,1))*r(3)] ;
y = [sin(A1(:,1))*r(1); sin(A2(:,1))*r(2); sin(A3(:,1))*r(3)] ;
a = [A1(:,2); A2(:,2); A3(:,2)];
z = meshgrid(x,y);
n = length(x);
m = length(y);
for i = 1: n
for j = 1 : m
z(i,j)= a(j);
end
end
plot3(x,y,z);
0 件のコメント
回答 (0 件)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!