Replacing individual Values in Data column based on a condition
22 次查看(过去 30 天)
显示 更早的评论
Hello!
I am new to matlab and programming in generall. I have been working with a large data table. I have a few outliers in one o the columns and would like to replace them with the value 1.
However, I keep getting the error "Right hand side of an assignment into a table must be another table or a cell array."
Here is my code. Any help is appreciated!
myData=db_data.dataTable;
myData(myData.fluid_p_rel<0.9,:)=[1];
myData(myData.fluid_p_rel>1.2,:)=[1];
0 个评论
采纳的回答
Stephen23
2019-5-9
idx = myData.fluid_p_rel<0.9 | myData.fluid_p_rel>1.2;
myData.fluid_p_rel(idx) = 1
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!