Minus table with another table
42 ビュー (過去 30 日間)
古いコメントを表示
vimal kumar chawda
2019 年 12 月 17 日
回答済み: vimal kumar chawda
2019 年 12 月 18 日
Hello Respected Sir
I have 7381*1 two table, i want to subtract each with other one. when I am doing it says it is not define. Can you please help me where it went wrong?
Thank you
0 件のコメント
採用された回答
Adam Danz
2019 年 12 月 17 日
編集済み: Adam Danz
2019 年 12 月 18 日
You have to specify the columns of each table.
% Create two tables, each with 1 column and 5 rows
T1 = table(randi(10,5,1),'VariableName',{'RandData'});
T2 = table(randi(10,5,1),'VariableName',{'RandData'});
% Subtract the two table-columns
y = T1.RandData - T2.RandData
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!