Line of best fit

11 vues (au cours des 30 derniers jours)
Kyle Hamanne
Kyle Hamanne le 8 Oct 2020
Commenté : Star Strider le 8 Oct 2020
How would i go about adding a line of best fit to this plot?
E = 6.9*10^10;
xaxis = [-20, -11.8, 0.4, 9.4, 20];
stress = [0.00039174, 0.00017886, -2.02e-06, -0.000214, -0.0002926]*E;
stress1 = stress;
plot(xaxis, stress1, 'r', 'Marker', '*')
xlabel('Vertical Distance from Neutral Axis (mm)')
ylabel('Stress (N/mm^2)')
title('Stress data with respect to Neutral axis')
legend('Stress data')

Réponse acceptée

Star Strider
Star Strider le 8 Oct 2020
It depends on what you intend by ‘best fit’.
For a linear fit, add these lines:
P = polyfit(xaxis, stress, 1);
linfit = polyval(P, xaxis);
hold on
plot(xaxis, linfit, '--b')
hold off
so the complete code si now:
E = 6.9*10^10;
xaxis = [-20, -11.8, 0.4, 9.4, 20];
stress = [0.00039174, 0.00017886, -2.02e-06, -0.000214, -0.0002926]*E;
stress1 = stress;
plot(xaxis, stress1, 'r', 'Marker', '*')
xlabel('Vertical Distance from Neutral Axis (mm)')
ylabel('Stress (N/mm^2)')
title('Stress data with respect to Neutral axis')
legend('Stress data')
P = polyfit(xaxis, stress, 1);
linfit = polyval(P, xaxis);
hold on
plot(xaxis, linfit, '--b')
hold off
For a different fitting function, use a different model, and likely fminsearch rather than polyfit if it is not a polynomial function.
That is your call.
  2 commentaires
Kyle Hamanne
Kyle Hamanne le 8 Oct 2020
The linear fit is perfect thankyou!
Star Strider
Star Strider le 8 Oct 2020
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Stress and Strain dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by