Minus table with another table

조회 수: 50 (최근 30일)
vimal kumar chawda
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
1.PNG

채택된 답변

Adam Danz
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

추가 답변 (1개)

vimal kumar chawda
vimal kumar chawda 2019년 12월 18일
Hey
I am not sure if we can do it with table of not but i change the table into array function.
table2array and after that minus function works.
Above answer may be right but i have not validate it.
The problem is closed.
Thank you

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by