Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How to differentiate one list with respect to another?

1 visualización (últimos 30 días)
Bartlomiej Winter
Bartlomiej Winter el 26 de Oct. de 2016
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Hello all,
Thanks for looking. I was wondering how to differentiate one list with respect to another. For example is a=[1,2,3,4,5] and b=[10,11,12,13,14], is there a way I can do da/db?
Thank you in advance for your help.
Bartek

Respuestas (1)

Massimo Zanetti
Massimo Zanetti el 26 de Oct. de 2016
Explain better what do you mean by "differentiate one list w.r.t. one another".
If for
a=[1,2,3,4,5]
b=[10,11,12,13,14]
you aim at getting
dff= [1-10,2-11,3-12,4-13,5-14]
then just do elementwise subtraction
dff=a-b
  1 comentario
Bartlomiej Winter
Bartlomiej Winter el 26 de Oct. de 2016
Thank you very much for this I'll give it a go.

La pregunta está cerrada.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by