how to write the equation in matlab as attached in file?
1 回表示 (過去 30 日間)
古いコメントを表示
i am unable to write the condition (even odd ) given in equation so help,
0 件のコメント
採用された回答
KSSV
2017 年 8 月 29 日
for i = 1:10
if mod(i,2)
fprintf('%d is odd\n',i)
else
fprintf('%d is even\n',i)
end
end
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!