Borrar filtros
Borrar filtros

equality of an array

1 visualización (últimos 30 días)
richard
richard el 4 de Sept. de 2014
Editada: Joseph Cheng el 4 de Sept. de 2014
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.

Respuesta aceptada

Honglei Chen
Honglei Chen el 4 de Sept. de 2014
Did you try
isequal(A(1:45,1:45),B)
  1 comentario
Joseph Cheng
Joseph Cheng el 4 de Sept. de 2014
Editada: Joseph Cheng el 4 de Sept. de 2014
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)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by