equality of an array
1 次查看(过去 30 天)
显示 更早的评论
I have two arrays. A is 46x46; B is 45x45.
I want to check if the first 45 rows and 45 columns in A are equal to the 45x45 B array.
I know to use
tf = is equal(A,B)
but don't know how to incorporate the above parameters into the isequal command.
0 个评论
采纳的回答
Honglei Chen
2014-9-4
Did you try
isequal(A(1:45,1:45),B)
1 个评论
Joseph Cheng
2014-9-4
编辑:Joseph Cheng
2014-9-4
just to expand on this a bit the A(1:45,1:45) is the A(specified row to another specified row,specified to another specified col)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Operators and Elementary Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!