How to remove unwanted elements of a array

I have two arrays with unwanted data at the beginning and end of each array (Stress and del L). What is an easy way to remove these elements?

Antworten (1)

WAT
WAT am 14 Okt. 2015
Bearbeitet: WAT am 14 Okt. 2015

1 Stimme

If you want to get rid of indices 1 through 3 (for example) then
array(1:3) = [];

1 Kommentar

Hyunjung Lee
Hyunjung Lee am 21 Apr. 2021
Thank you! I am not the original poster, but this helped me with removing array elements specified in an index vector. Before looking at your reply, I tried a(~idx,:) to try to only keep rows other than those specified by an index vector idx, but it didn't work. Thanks again!

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Operators and Elementary Operations finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 14 Okt. 2015

Kommentiert:

am 21 Apr. 2021

Community Treasure Hunt

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

Start Hunting!

Translated by