Is there any way to put a nlinfit function in a for loop?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hello every body. Is there any way to put a nlinfit function in a for loop?
2 comentarios
Sargondjani
el 14 de Nov. de 2021
Please be more specific? Are your Y's different data sets, or your X's, or both?
Assume X are 2D matrices stored in a 3D array, and Ys as column vectors in a 2D matrix:
for ii = 1:nn
beta(:,ii) = nlinfit(X(:,:,ii),Y(:,ii),modelfun,beta0)
end
where you should pre-allocate beta.
Respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!