Delete rows with certain values while keeping text in column

1 回表示 (過去 30 日間)
Rogier Busscher
Rogier Busscher 2017 年 6 月 8 日
コメント済み: KSSV 2017 年 6 月 9 日
I have a large table with data on traffic times and modes. A sample is given below:
Now I would like to remove all rows with a zero. This would be easy to perform on a matrix with something like this:
rows_to_remove = any(data==0, 2);
data(rows_to_remove,:) = [];
However, when I load this table as a matrix, the text data on the travel mode is converted into a numerical value that has no meaning.
How do I remove all rows with a zero while keeping the text in the 5th and 7th column?
  5 件のコメント
Image Analyst
Image Analyst 2017 年 6 月 8 日
Are those two numbers separated by a comma a string? Or is that like some European countries that use a comma instead of a decimal point so they are really numbers, not strings? Can you attach your data file?
KSSV
KSSV 2017 年 6 月 9 日
Attaching a snapshot of file, wont help. To get full help, attach the file.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by