How to fit an exponential curve for every column in a matrix?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
parslee
am 17 Mär. 2022
Kommentiert: parslee
am 17 Mär. 2022
I have a matrix of 257x36 and each column represents a different data set.
I need to apply an exponential fit to each column and also store the fit values.
How can I go about doing this?
2 Kommentare
Akzeptierte Antwort
David Hill
am 17 Mär. 2022
for k=1:36
B{k}=fit((1:257)',A(:,k),'exp1');
end
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Linear and Nonlinear Regression finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!