필터 지우기
필터 지우기

Fitting 3-d plot

조회 수: 4 (최근 30일)
Tim Fulcher
Tim Fulcher 2023년 8월 27일
댓글: Tim Fulcher 2023년 8월 27일
Hi all,
I've been plotting a surface plot using surf(x, y, z) where x is a 1 x 8 double, y is a 1 x 11 double and z is an 11 x 8 double and fitting that surface using cftool with no issues. I now need to change my approach slightly and perform the fit programatically (as opposed to using cftool).
However surffit = fit([x,y],z,'poly32','normalize','on') does not accept my current format. How I can I adjust or massage my raw data (x, y and z) for surffit to accept it?
Thanks

채택된 답변

the cyclist
the cyclist 2023년 8월 27일
Use meshgrid to make a grid out of your x and y vectors:
x = 1:8;
y = 1:11;
z = rand(11,8);
[xx,yy] = meshgrid(x,y);
surf(xx,yy,z)
  댓글 수: 3
the cyclist
the cyclist 2023년 8월 27일
Sorry, I should have mentioned that the surface fitting function requires you to turn all those matrices into vector again. The key concept being that all the vectors need to be the same length, and specify a series of (x,y,z) coordinates.
You should double-check that my syntax really put the correct z with the corresponding (x,y). It's easy to get the (x,y) swapped.
x = 1:8;
y = 1:11;
z = rand(11,8);
[xx,yy] = meshgrid(x,y);
surf(xx,yy,z)
surffit = fit([xx(:), yy(:)], z(:), 'poly32', 'normalize', 'on')
Linear model Poly32: surffit(x,y) = p00 + p10*x + p01*y + p20*x^2 + p11*x*y + p02*y^2 + p30*x^3 + p21*x^2*y + p12*x*y^2 where x is normalized by mean 4.5 and std 2.304 and where y is normalized by mean 6 and std 3.18 Coefficients (with 95% confidence bounds): p00 = 0.4901 (0.371, 0.6093) p10 = -0.06547 (-0.2478, 0.1169) p01 = -0.0336 (-0.1297, 0.06249) p20 = -0.02249 (-0.09529, 0.05031) p11 = -0.004547 (-0.06809, 0.059) p02 = 0.03962 (-0.03234, 0.1116) p30 = 0.01978 (-0.06944, 0.109) p21 = 0.01987 (-0.05335, 0.09309) p12 = 0.04835 (-0.02401, 0.1207)
Tim Fulcher
Tim Fulcher 2023년 8월 27일
Thanks cyclist that all worked great.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with Curve Fitting Toolbox에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by