How can I fit 3-D scatter points with value?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Zihao Huang
el 7 de Ag. de 2020
Editada: Abdolkarim Mohammadi
el 8 de Ag. de 2020
Hi,
I have an output file from a fluent simulation. The output file contains the coordinates of each of the nodes and the pressure value of each node. In other words, each point has its coordinate (theta, r, z) and its pressure value p. Is there a way I could fit these scatter points and output an expression p(theta,r,z)?
Thank you,
Joseph
0 comentarios
Respuesta aceptada
Abdolkarim Mohammadi
el 7 de Ag. de 2020
Editada: Abdolkarim Mohammadi
el 7 de Ag. de 2020
If your model for the relationship between (theta, r, z) triplets and the pressure is linear, use regress. Otherwise, use lsqcurvefit or nlinfit. You cannot use the curve fitting app (cftool) because it only supports up to two independent variables.
4 comentarios
Abdolkarim Mohammadi
el 7 de Ag. de 2020
Editada: Abdolkarim Mohammadi
el 8 de Ag. de 2020
(1) When you split apart values of theta, you are treating it as a moderator variable. In other words, you are assuming that theta does not directly affect pressure; it is just affecting the model (r,z)=>p. This is in contrast with the assumption of the direct effect of theta in the model (r,p,theta)=>p.
(2) As I mentioned in my previous comment, interpolation does not produce equation. It just interpolates between your data points to fill the gaps between datapoints. For example, if you have only two data points of (x=0,y=0) and (x=1,y=2) then you create interpolation and evaluate the interpolation at x=0.5, then it returns y=1, which is the intermediate between your points.
(3) You should not judge the quality of interpolation models based on . Any type of interpolation will always lead to . It's because they do not produce error at datapoints.
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear and Nonlinear Regression 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!