







Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
A matlab tutorial on performing linear regression analysis to determine the relationship between frog croaking rates and temperature. The tutorial includes the matlab code for data processing, plotting, and calculating the regression coefficients and goodness of fit.
Typology: Slides
1 / 13
This page cannot be seen from the preview
Don't miss anything!








% Plot Regression Line Tfmax = max(Tf); Tfmin = min(Tf); Tfplot = linspace(Tfmax, Tfmin); % Calc CpH projected response using Regression Constanstants CpHplot = m0Tfplot + b0; plot(Tf, CpH,'', Tfplot, CpHplot), xlabel('T °F'), ylabel('CpH (Croaks/Hr)'),... Title('Frog Croaking vs Temperature'), grid % disp('Diplaying °F Regression Plot - Hit any key to continue ') pause % % Calc Goodness of Fit %% the Minimized J value, J J0 = sum((m0*Tf+b0-CpH).^2) %% Calc Sum of Sqs about the Mean CpH_avg = mean(CpH) S = sum((CpH-CpH_avg).^2) %% Calc r-sqd r_sqd = 1-J0/S; % % disp('Coeff of Determination, r-sqd = ') disp(r_sqd)
2
Frog Croaking
CpH = 0.2157•Tf - 0. R^2 = 0.
15
16
17
18
19
20
70 75 80 85 90 95 Temperature (°F)
Croak Frequency (Croaks per Hour)
E25_Lin_Regress_Tutorial_0703.xls