How to check if my array is square with if and else loops?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jonas Morgner
el 4 de Mayo de 2022
Respondida: Chunru
el 4 de Mayo de 2022
A = [1 -2 1;
0 2 -8;
-4 5 9]
How can I check if this array is a square array using an if-else loop?
0 comentarios
Respuesta aceptada
Chunru
el 4 de Mayo de 2022
A = [1 -2 1;
0 2 -8;
-4 5 9]
if ndims(A)==2 && (size(A,1)==size(A,2))
disp("A is Square")
end
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Operators and Elementary Operations 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!