insert values of one table into another table if 1
1 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
Walter Roberson
2022-8-1
temp(table1{:,1}) = table2{:, 1};
Then array2table(temp) and provide the appropriate variable name
更多回答(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!