Matlab code i need for below problem
1 回表示 (過去 30 日間)
古いコメントを表示
I want to check whether the data that is present in sheet 1 of excel is same as sheet 2 of excel of same file name tht is testdata1.xls can any 1 help me to solve this problem
0 件のコメント
採用された回答
Walter Roberson
2019 年 3 月 25 日
filename = 'testdata1.xls';
T1 = readtable(filename, 'sheet', 1);
T2 = readtable(filename, 'sheet', 2);
if isequal(T1, T2)
disp('Sheet 1 is the same as sheet 2')
else
disp('Sheet 1 is not the same as sheet 2')
end
12 件のコメント
Walter Roberson
2019 年 3 月 31 日
You said above https://www.mathworks.com/matlabcentral/answers/452094-matlab-code-i-need-for-below-problem#comment_685311 that
"all taking image from foldrr and then comparing"
so you told us that the images are being taken from a folder, not being captured.
In any case, if you take an eye image of the user, and you need to compare it to stored eye images, then what are you using Excel for?
その他の回答 (3 件)
参考
カテゴリ
Help Center および File Exchange で Database Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!