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.

 채택된 답변

Honglei Chen
Honglei Chen 2014년 9월 4일

0 개 추천

Did you try
isequal(A(1:45,1:45),B)

댓글 수: 1

Joseph Cheng
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개)

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

질문:

2014년 9월 4일

편집:

2014년 9월 4일

Community Treasure Hunt

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

Start Hunting!

Translated by