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 Kommentare

Walter Roberson
Walter Roberson am 12 Apr. 2018
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?
Brecht Leenmans
Brecht Leenmans am 12 Apr. 2018
object

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Walter Roberson
Walter Roberson am 12 Apr. 2018

5 Stimmen

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

Weitere Antworten (0)

Kategorien

Community Treasure Hunt

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

Start Hunting!

Translated by