How to display value of diff 0

2 vues (au cours des 30 derniers jours)
Mohammed Shadab Khan
Mohammed Shadab Khan le 13 Nov 2022
I have code ready but I am not able to make a table because the array lengths are different as there is diff of zero in the first value Matlab is just skipping to next and instead of me getting an answer with 32 elements i am getting the anwer with 31 elements.
  1 commentaire
Torsten
Torsten le 13 Nov 2022
Then skip one element of the second vector or add one element to the first vector.

Connectez-vous pour commenter.

Réponses (1)

Image Analyst
Image Analyst le 13 Nov 2022
If v is your vector and d is the difference vector and you want them to be the same size, a common solution is
d = [0, diff(v)]; % If v is a row vector.
d = [0; diff(v)]; % If v is a column vector.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by