Is there any way to put a nlinfit function in a for loop?
2 次查看(过去 30 天)
显示 更早的评论
Hello every body. Is there any way to put a nlinfit function in a for loop?
2 个评论
Star Strider
2021-11-14
Yes.
Please be a bit more specific about the application and desired result. (With all due respect, an ambiguous question will produce only an ambiguous answer.)
Sargondjani
2021-11-14
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.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!