How can I check this matrix is the correct size?

33 ビュー (過去 30 日間)
Heather Spain
Heather Spain 2020 年 4 月 25 日
回答済み: kevin harianto 2022 年 4 月 4 日
I am wondering if this code is the correct code to check if the matrix is 18x4.
I think all it does is check if it has 18 rows, but does it check if it has 4 columns?
(initial4 should be an 18x4 matrix)
sz= size(initial4);
if (sz ~= 18)
fprintf("Vector must be an 18x4 matrix.");
end

回答 (2 件)

Ameer Hamza
Ameer Hamza 2020 年 4 月 25 日
Use this for checking the size
if ~isequal(size(M1), [18 4])
For example
M1 = rand(18, 4);
M2 = rand(18, 3);
if ~isequal(size(M1), [18 4])
fprintf("Matrix M1 must be an 18x4 matrix.\n");
end
if ~isequal(size(M2), [18 4])
fprintf("Matrix M2 must be an 18x4 matrix.\n");
end
Result
Matrix M2 must be an 18x4 matrix.
  2 件のコメント
Heather Spain
Heather Spain 2020 年 4 月 27 日
Thank you, that worked!
Ameer Hamza
Ameer Hamza 2020 年 4 月 27 日
Glad to be of help.

サインインしてコメントする。


kevin harianto
kevin harianto 2022 年 4 月 4 日
what if you want to check if the size of the matrix is too small?

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by