How to trim a data to same dimension?

1 次查看(过去 30 天)
Data contains 2 columns (plan and T). However, plan contains some NaN. I would like to delete the NaN from plan and also its corresponding values in T so that the good data from columns plan and T will be of the same dimension

采纳的回答

Guillaume
Guillaume 2015-7-15
Assuming data is an m x 2 matrix, it's simply:
Data(isnan(Data(:, 1)), :) = []
That is, find the nan in the first column of Data ( isnan(Data(:, 1))), and removes all the rows for which isnan is true ( Data(trueorfalse, :) = [])
  4 个评论
AbelM Kusemererwa
AbelM Kusemererwa 2015-7-15
编辑:AbelM Kusemererwa 2015-7-15
Please, after deleting I would want to give them different names. How do I store them separately after deleting?
Guillaume
Guillaume 2015-7-15
Then you don't delete, you only copy the data you want to keep (everything that is not nan)
tokeep = ~isnan(plan); %use ~ for logical not
newplan = plan(tokeep);
newT = T(tokeep);

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by