why it does not work ?
显示 更早的评论
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 个评论
Voss
2023-10-29
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?
回答(1 个)
Walter Roberson
2023-10-29
0 个投票
- missing end statement
- no assignment to the output variable out
类别
在 帮助中心 和 File Exchange 中查找有关 MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!