System identification for given data pairs
Mostrar comentarios más antiguos
Hello
I have system with 3 input and one output. This is "time independent" system. How can we express this system with polynomial fit or other methods relating input and output ?
regards Kushal
2 comentarios
Kushal Badgujar
el 24 de Ag. de 2014
Editada: Kushal Badgujar
el 24 de Ag. de 2014
Star Strider
el 24 de Ag. de 2014
Respuestas (1)
Image Analyst
el 24 de Ag. de 2014
There may be many u1,u2,u3 that give rise to a certain output value, y, especially if they are integers. If your y is a 3D array of numbers for every u1,u2,u3 (for example it's the intensity value of a 3D CT or MRI medical image), you can find the logical indexes for places with that y value like:
locations = find(y == desired_y);
For the fitting question, John D'Errico has a polyfitn() that will fit a 3D polynomial to your data. http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A679
Categorías
Más información sobre Linear Model Identification en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!