deleting certain data (zeros) from some columns in data without line shift

5 Ansichten (letzte 30 Tage)
Importing csv file into vector with 2 columns and 200 rows. row 0-358 have zeros in second column. Need to delete all rows that include the zero data so I can plot graphs with the rest. how do i do that

Antworten (1)

Guillaume
Guillaume am 1 Mai 2017
yourmatrix(any(yourmatrix, :) ==0, :) = []
To delete rows where any column is 0.
Note that by definition a vector has all but one dimension equal to 1. There can not be a vector with 2 columns and 200 rows. This is a matrix.
Also note that if it's just for plotting you don't need to delete anything. Simply use basic indexing in your plot command:
plot(yourmatrix(359:end, :)); %only plot from row 359 onwards

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by