Filter löschen
Filter löschen

why it does not work ?

1 Ansicht (letzte 30 Tage)
EZRA
EZRA am 29 Okt. 2023
Kommentiert: Voss am 29 Okt. 2023
function out = block3(row, colomn)
a = zeros(row, colomn);
for i = 1:row
for j = 1:colomn
if ~mod(i,2) && ~mod(j,2)
a(i, j) = 1;
end
end
  1 Kommentar
Voss
Voss am 29 Okt. 2023
You ask why it does not work. In order to answer that question, we need to know what it should do, but you haven't told us that. What should this function do?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Walter Roberson
Walter Roberson am 29 Okt. 2023
  • missing end statement
  • no assignment to the output variable out
  3 Kommentare
EZRA
EZRA am 29 Okt. 2023
function block3(row, colomn)
a = zeros(row, colomn);
for i = 1:row
for j = 1:colomn
if ~mod(i,2) && ~mod(j,2)
a(i, j) = 1;
end
end
end
Voss
Voss am 29 Okt. 2023
Wild guess: Perhaps the function should output the variable 'a'.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Language Fundamentals 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