Surface fitting for a matrix

조회 수: 16 (최근 30일)
Keyla Gonzalez
Keyla Gonzalez 2020년 5월 7일
댓글: Ameer Hamza 2020년 5월 8일
Hi,
Do you know how can I obtain surface fit (polynomial) for a matrix of size 20x20. I notice that in the curve fitting toolbox you need to enter your data as X and Y; however I'm not how to use it with a matrix of that size.
I also used imagesc to visualize my values however im not sure if I can do something with the image.

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 5월 7일
If you just have the matrix, then you can use the row and column number as the x and y variables. Try this example
M = ((1:10)+(1:10).').^2;
[X, Y] = meshgrid(1:size(M,2), 1:size(M,1));
fit_model = fit([X(:) Y(:)], M(:), 'poly43');
plot(fit_model, [X(:) Y(:)], M(:))
  댓글 수: 2
Keyla Gonzalez
Keyla Gonzalez 2020년 5월 8일
Thank you Ameer, it worked perfectly.
Ameer Hamza
Ameer Hamza 2020년 5월 8일
I am glad to be of help.

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

카테고리

Help CenterFile Exchange에서 Get 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