best fit
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi there, I have a 6 x 83430 matrix. I want a 1 x 83430 matrix which has the best fit.
0 comentarios
Respuestas (1)
Wayne King
el 30 de Mayo de 2012
It seems you want to summarize the 6 values in each column of the matrix. How about just using mean()?
x = randn(6,83430);
x = mean(x);
0 comentarios
Ver también
Categorías
Más información sobre Get Started with Curve Fitting Toolbox 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!