How to find the slope of the tangent on the graph at X=0 and Y=0 for the given current-voltage graph
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
NITHIN XAVIER
am 22 Okt. 2020
Kommentiert: Star Strider
am 12 Nov. 2020
Hi all,
I want to find the slope of the tangent of the I-V graph (this is ploted from the raw data) at V=O and I=0. Can anyone help me to do this?. I don't have a good command on Matlab.
Thanks in advance.

0 Kommentare
Akzeptierte Antwort
Star Strider
am 22 Okt. 2020
I am not certain what you want.
See if the gradient funciton does what you want. It requires evenly-spaced data with known differences between the points, however you can get around that with:
dydx = gradient(y) ./ gradient(x);
That slope will probably be what you want.
If it is not, experiment!
4 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Spline Postprocessing finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!