Create function that varies between 1 and zero if input is 1 or 2
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello as the title explains I want to create a function that gives an output of either 1 or zero depending if the input is 1 or 2 this is what I've tried but does't seem to work:
function [y1,y2] = delt(x)
if x == 2
y1=1;
else
y2=0;
end
end
0 commentaires
Réponse acceptée
Dyuman Joshi
le 10 Nov 2023
The output variable should be the same -
y1 = delt(1)
y2 = delt(2)
y3 = delt(-69)
function y = delt(x)
if x == 2
y=1;
else
y=0;
end
end
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matched Filter and Ambiguity Function dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!