Borrar filtros
Borrar filtros

How would I check to see if the number of rows in one matrix are equal to the number of rows in another matrix?

2 visualizaciones (últimos 30 días)
I'm trying to write a function which will compare two matrices. Prior to this comparison I want my function to error check the entered matrices to ensure that the two matrices have the same number of rows. I know I will use and if/else statement and an error message, but what would the code look like for the check? Thank you!

Respuestas (2)

Star Strider
Star Strider el 2 de Nov. de 2016
Use the size function to get the size of the vector or matrix. The first dimension are the number of rows, so for matrix ‘A’:
nr_rows = size(A,1);

Thorsten
Thorsten el 3 de Nov. de 2016
Editada: Thorsten el 3 de Nov. de 2016
You can use assert
assert(size(A,1) == size(B, 1), 'Matrices have different numbers of rows.')
If the condition given as the first argument is false, an error message with the second argument is thrown.

Categorías

Más información sobre Multidimensional Arrays 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