I like to find word in a column and if the word is found in the column (let´s say column 3). The value in column 4 should be changed into the value of column 5. How should you do this?

2 个评论

Is this a table() object? Or is this a "table" as in a stream of text arranged in a column that is scrapped from a web page?

请先登录,再进行评论。

 采纳的回答

mask = ismember(YourTable{:,3}, TheWord);
YourTable(mask,4) = YourTable(mask,5);

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Tables 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by