(Need Help) How to Obtain 2D Interpolation Coefficient?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Changwoo Lee
el 29 de Oct. de 2021
Editada: Changwoo Lee
el 29 de Oct. de 2021
I have a pre-setup 2D matrix whose size is [N x N].
Using this data, I want to find the each coefficient k in the below specific funtion.
z=k11*x^2+k22*y^2+...
k12*x*y+...
k1*x+k2*y+k0;
What's the simplest way to obtain these coefficients in Matlab?
It seems that the command 'interp2' does not provide these coefficients.
2 comentarios
Matt J
el 29 de Oct. de 2021
You have y on both the left and right hand side of the equation. Are they the same y or did you mean
z=k11*x^2+k22*y^2+...
k12*x*y+...
k1*x+k2*y+k0;
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Interpolation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!