Afficher commentaires plus anciens
Hi, How, I can create a code in matlab to calculate the slope at every point in the curve if I have experemnt data
Sav{0.47 0.532 0.588 0.662 0.736 0.772}
Wi{0.254 0.539 1.071 3.349 12.72 26.54} I want to calculate Fo= d Sav / d Wi
Thanks
1 commentaire
Walter Roberson
le 2 Avr 2012
Your duplicate questions on this topic have been deleted.
Réponses (1)
Andrei Bobrov
le 2 Avr 2012
sw = reshape([0.47 0.254 0.532 0.539 0.588 1.071 0.662 3.349 0.736 12.72 0.772 26.54 ],2,[])
dsw = diff(sw,1,2)
Fo = dsw(1,:)./ dsw(2,:)
OR
Fo = diff(Sav)./diff(Wi)
Catégories
En savoir plus sur Triangular Distribution dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!