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

5 visualizzazioni (ultimi 30 giorni)
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

Risposte (1)

Guillaume
Guillaume il 1 Mag 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

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by