How can I find the exponent of a log plot?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I'm plotting some data on a log scale using the code
for k = 1:length(dataeachcurrent)
temparray(k) = 1000./(T.TIcell{dataeachcurrent{k}{1}/10}(dataeachcurrent{k}{2})+273);
timeto50array(k) = dataeachcurrent{k}{3};
end
semilogy(fliplr(temparray),fliplr(timeto50array),'*','Color',[0.5 0 0.5])
fitEa = polyfit(fliplr(temparray),fliplr(timeto50array),1);
plotfit = polyval(fitEa,fliplr(temparray));
plot(fliplr(temparray),plotfit,'k--')
where temparray and timeto50array are taken from a set of cell arrays. This gives me a linear gradient on a log scale on the y axis, but I need the value of the exponent (which I think is given by the gradient) but I'm unsure how to get this value from the parameters I have. How can I extract this?
2 commentaires
Stephan
le 26 Fév 2019
Is it the same question as: https://de.mathworks.com/matlabcentral/answers/447060-how-do-i-extract-the-exponent-from-a-semilogy-plot ?
Réponses (0)
Voir également
Catégories
En savoir plus sur Linear and Nonlinear Regression dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!