how can i write code on this?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
if true
f (a, b) = { 0, if a mod b = 0
{ b − (a mod b), otherwise
end
0 Commenti
Risposta accettata
Birdman
il 16 Gen 2018
a=input('Enter a\n');
b=input('Enter b\n');
if ~mod(a,b)
y=0
else
y=b-mod(a,b)
end
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Motor Drives in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!