필터 지우기
필터 지우기

how can i write code on this?

조회 수: 3 (최근 30일)
PLACEIUS NISHIGA G
PLACEIUS NISHIGA G 2018년 1월 16일
답변: Birdman 2018년 1월 16일
if true
f (a, b) = { 0, if a mod b = 0
{ b (a mod b), otherwise
end

채택된 답변

Birdman
Birdman 2018년 1월 16일
a=input('Enter a\n');
b=input('Enter b\n');
if ~mod(a,b)
y=0
else
y=b-mod(a,b)
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by