Saturday, November 24, 2012

Matlab surface fitting: why and how

Recently I come across a problem like this in my work:

Tow inputs, or say variables, determine the value of one output. z=f(x,y), but I am not sure what the function look like explicitly. So I did a lot of measurements and by the end I got three sets of data: 7 x values, 21 y values, and 147 corresponding z values. The surface fitting is the method that can help me find the explicit form of function z=f(x,y). And I used the Surface Fitting Tool in MATLAB to do this.

This tool has a very user-friendly interface, so not much explanation is needed here.
Screen shot of Surface Fitting Toll

1 comment:

  1. I am not sure why we need this feature to fit the matlab surface but I think may be this is very useful for some people. Thank You. You can check 5 Tips to increase blog traffic immediately

    ReplyDelete

Any comments?

my-alpine and docker-compose.yml

 ``` version: '1' services:     man:       build: .       image: my-alpine:latest   ```  Dockerfile: ``` FROM alpine:latest ENV PYTH...