Filter löschen
Filter löschen

How to check if my array is square with if and else loops?

3 Ansichten (letzte 30 Tage)
Jonas Morgner
Jonas Morgner am 4 Mai 2022
Beantwortet: Chunru am 4 Mai 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?

Akzeptierte Antwort

Chunru
Chunru am 4 Mai 2022
A = [1 -2 1;
0 2 -8;
-4 5 9]
A = 3×3
1 -2 1 0 2 -8 -4 5 9
if ndims(A)==2 && (size(A,1)==size(A,2))
disp("A is Square")
end
A is Square

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by