Using arrays and finding the slope

4 vues (au cours des 30 derniers jours)
Christine Nee
Christine Nee le 24 Jan 2017
Commenté : Christine Nee le 25 Jan 2017
Would it be appropriate to use this kind of logic in Matlab? I am getting a weird slope graph so I wanted to double check.
From this graph ex:
plot(strainpercentage(452:502),c3(452:502))
To find the slope, this plot:
plot(c3(452:502)./strainpercentage(452:502))

Réponse acceptée

Jan
Jan le 25 Jan 2017
Use gradient of diff to determine the slope.
plot(diff(c3(452:502))./diff(strainpercentage(452:502)))
  1 commentaire
Christine Nee
Christine Nee le 25 Jan 2017
Great, that makes more sense. Thanks

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Operators and Elementary Operations 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!

Translated by