insert values of one table into another table if 1

3 ビュー (過去 30 日間)
Frederik Reese
Frederik Reese 2022 年 8 月 1 日
コメント済み: Frederik Reese 2022 年 8 月 2 日
Hi, i have a question. Hopefully someone can help.
I have the attached tables with different size. One of them is a logical.
I want a new table:
if the logical table is 1 i want the first value of the second table
if the logical table is 0 i want 0
f.e.
Table 1 Table 2 new table
1 547 547
0 59 0
0 439 0
1 20 59
Thanks for your help

採用された回答

Walter Roberson
Walter Roberson 2022 年 8 月 1 日
temp(table1{:,1}) = table2{:, 1};
Then array2table(temp) and provide the appropriate variable name
  1 件のコメント
Frederik Reese
Frederik Reese 2022 年 8 月 2 日
Hi,
when I run this, I get not the correct solution.
My logical is 4585x1, the corresponding double is 852x1 and the solution is 1x4583.
Can you tell me why the solution is too short and why the value assignment is at some points incorrct?
DauertRmax10000new(Lv(:,1)) = DauerTRmax10000(:, 1);
Unrecognized function or variable 'DauerTRmax10000'.
Thanks in advance.

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by