How to find the gradient of a curve at a specific point?
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Pramodya Wijesinghe
el 7 de Sept. de 2017
Comentada: Pramodya Wijesinghe
el 15 de Sept. de 2017
0 comentarios
Respuesta aceptada
Jose Marques
el 9 de Sept. de 2017
If the data is in the variable "data", you find the gradient like this:
grad = zeros(size(data))
for i=1:(size(data,2)-1)
grad(i) = data(i+1)-data(i);
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Mathematics and Optimization en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!