How to remove numbers from a vector?

6 vues (au cours des 30 derniers jours)
rafe brooks
rafe brooks le 30 Déc 2020
Commenté : rafe brooks le 5 Jan 2021
I am using graphical data and looping round a set of data. So, how can I write an if statement to remove zeros from the start and end of the vector so that only the needed data is there, I dont want to remove all zeros though as the middle section of all the data sets has zeros which are needed?
The variable that the data sets loop through is called z_force

Réponse acceptée

Walter Roberson
Walter Roberson le 30 Déc 2020
minidx = find(z_force, 1, 'first')
maxidx = find(z_force, 1, 'last')
z_force(minidx:maxidx)
  2 commentaires
Image Analyst
Image Analyst le 30 Déc 2020
minidx = find(z_force, 1, 'first')
maxidx = find(z_force, 1, 'last')
z_force = z_force(minidx:maxidx) % Extract and assign back to z_force, overwriting the original.
rafe brooks
rafe brooks le 5 Jan 2021
Thanks for the help, thats great!

Connectez-vous pour commenter.

Plus de réponses (1)

William
William le 30 Déc 2020
You could use something like:
while z_force(1)==0
z_force(1) = [];
end
while z_force(end)==0
z_force(end) = [];
end

Catégories

En savoir plus sur Loops and Conditional Statements 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