how to make function that sometimes return output and how to call

조회 수: 6 (최근 30일)
  • b sometimes returned from myfn and sometimes not returned, so how to write the function that may retrun b
function [a,b] = myfn(x,y)
a
if(x=y)
b
end
  • also how to call myfn from the main file if b is not returned
[a,b]=myfn(x,y)

채택된 답변

Stephen23
Stephen23 2017년 10월 22일
Simplest solution: set a default output value:
function [a,b] = myfn(x,y)
a = 1;
b = [];
if(x=y)
b = 2;
end
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