Table: Overwrite column value with condition

5 ビュー (過去 30 日間)
Nycholas Maia
Nycholas Maia 2019 年 1 月 9 日
コメント済み: Nycholas Maia 2019 年 1 月 9 日
I would like to overwrite all values of a specific column, but using a condition, like this:
% Dummy array values:
a = [1;2;3;4;5];
% Create a table with only 1 column 'a':
myTable = table(a);
% WRONG CODE: trying to overwrite 'a' column values
myTable = myTable(myTable.a < 3) == 0;
How could I do it?

採用された回答

Stephen23
Stephen23 2019 年 1 月 9 日
編集済み: Stephen23 2019 年 1 月 9 日
This might work:
myTable.a(myTable.a < 3) = 0;
  1 件のコメント
Nycholas Maia
Nycholas Maia 2019 年 1 月 9 日
excellent! thanks Stephen!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by