Filter löschen
Filter löschen

How to check 0 and 1 at matrix every row and column?

3 Ansichten (letzte 30 Tage)
Md. Mohidul Islam
Md. Mohidul Islam am 25 Apr. 2022
Kommentiert: Torsten am 25 Apr. 2022
matrix can only contain one of the only one in his row and column.
  1 Kommentar
Torsten
Torsten am 25 Apr. 2022
If you know that the matrix contains only 0's and 1's, sum the rows and sum the columns. If the result is 1 in each case, return "correct".

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Torsten
Torsten am 25 Apr. 2022
Bearbeitet: Torsten am 25 Apr. 2022
[m,n] = size(A);
Sc = sum(A,1);
Sr = sum(A,2);
if (Sc == ones(1,n)) & (Sr == ones(m,1))
disp('Correct')
else
disp('Incorrect')
end
I leave the input-from-keyboard part to you.
  3 Kommentare
Md. Mohidul Islam
Md. Mohidul Islam am 25 Apr. 2022
What is the problem? how to solve this?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Md. Mohidul Islam
Md. Mohidul Islam am 25 Apr. 2022

Kategorien

Mehr zu Simulink finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by