I have to create a function y=D(m,n) where the value of y is m/n if n divides m evenly and n/m if m divides n evenly and otherwise y is zero. I used if and else if statements to define these but I wondering how to define the value of y as an integer.

2 Ansichten (letzte 30 Tage)
function y=D1(m,n)
if m/n== ?
y=m/n;
elseif n/m== ?
y=n/m;
else
y=0;
end
end

Antworten (1)

the cyclist
the cyclist am 14 Sep. 2017
It looks like you need the mod function.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by