How to code difference quotients in matlab?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ekagra gupta
el 13 de Jun. de 2022
Comentada: Image Analyst
el 14 de Jun. de 2022
I have a vector U and I want to take its difference quotient at a time instance j i.e. I want to find dU as shown below. How can it be done?
Thank you guys in advance!
0 comentarios
Respuesta aceptada
Jonas
el 13 de Jun. de 2022
elementwise differences of consecutive elements can be calculated using diff() command
2 comentarios
Image Analyst
el 14 de Jun. de 2022
U = randi(9, 1, 10)
% Compute difference
du = diff(U)
% Compute variance
varU = var(du)
Not sure what you mean by ratio. A ratio is a fraction of something divided by something. What are you ratioing? The ratio of a single number -- the variance -- doesn't make sense.
Más respuestas (0)
Ver también
Categorías
Más información sobre Calculus 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!