Loop problem...please help

2 vues (au cours des 30 derniers jours)
Tabshir Bin Bashar
Tabshir Bin Bashar le 8 Déc 2019
Commenté : Walter Roberson le 8 Déc 2019
Write a MATLAB function that takes a one-dimensional array of numbers (either a
row or column vector), and removes all of the neighboring duplicated numbers. For
example, the array [1 2 2 2 3 0 1 0 0 4] becomes [1 2 3 0 1 0 4]. The function should
return the answer as a one-dimensional array of numbers in the same format as the
input. Your program should use a loop command.

Réponse acceptée

Walter Roberson
Walter Roberson le 8 Déc 2019
Take a copy of the input. Go through it starting from the end. If the current entry is the same as the entry before it in the array, delete the current entry.
  2 commentaires
Tabshir Bin Bashar
Tabshir Bin Bashar le 8 Déc 2019
x=[1 2 2 2 3 0 1 0 0 4];
for i=1:length(x)
if x(i)==x(i+1)
x(i)=[];
end
end
tried this but not working
Walter Roberson
Walter Roberson le 8 Déc 2019
Starting from the end I said, not from the beginning . And I said to check the previous entry, not the next entr.
And watch out for your boundary condition. If you are at i = 1 then you should not be examining x(i-1)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by