フィルターのクリア

Fit surface from Two vectors and a matrix

6 ビュー (過去 30 日間)
Drew Mitchell
Drew Mitchell 2016 年 2 月 11 日
編集済み: Matt J 2016 年 2 月 12 日
I have two vectors (of different length) that correspond to x and y locations in the x-y plane. I also have the corresponding matrix, z, that gives the hight above the x-y plane for all combinations of x and y( If size(x)=10,1 size(y)=7,1 then size(z)=10,7). I can plot a surface of the data by using surf(x,y,z) and it will work. What I want to do is to be able to fit this surface with a polynomial function of x and y. I am attempting to use fit([x,y],z,'fittype') however this function takes x y and z in the form of vectors only. How do I get the polynomial surface fit from the data I have?
Thanks

採用された回答

Matt J
Matt J 2016 年 2 月 11 日
編集済み: Matt J 2016 年 2 月 11 日
[X,Y]=ndgrid(1:10,1:7);
fit([X(:),Y(:)],z(:),'fittype')
  2 件のコメント
Drew Mitchell
Drew Mitchell 2016 年 2 月 12 日
That was what I needed thanks! Is it possible to get a higher order than poly55? I.e. 5th order for x and 5th order for y? So something 9th order for x and 8th order for y. I get an error when I attempt to go to a greater order than 55. Im atempting to use fit([x y],z,'poly98) Thanks again
Drew
Matt J
Matt J 2016 年 2 月 12 日
編集済み: Matt J 2016 年 2 月 12 日
I expect that that will be a highly ill-conditioned fitting problem. However, if the Curve Fitting Toolbox won't even attempt it for you, then one of these might:

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with Curve Fitting Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by