Create function that varies between 1 and zero if input is 1 or 2

조회 수: 6 (최근 30일)
Fernando
Fernando 2023년 11월 10일
댓글: Fernando 2023년 11월 10일
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

채택된 답변

Dyuman Joshi
Dyuman Joshi 2023년 11월 10일
The output variable should be the same -
y1 = delt(1)
y1 = 0
y2 = delt(2)
y2 = 1
y3 = delt(-69)
y3 = 0
function y = delt(x)
if x == 2
y=1;
else
y=0;
end
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Just for fun에 대해 자세히 알아보기

태그

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by