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

9 ビュー (過去 30 日間)
Jonas Morgner
Jonas Morgner 2022 年 5 月 4 日
回答済み: Chunru 2022 年 5 月 4 日
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?

採用された回答

Chunru
Chunru 2022 年 5 月 4 日
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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOperators and Elementary Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by