필터 지우기
필터 지우기

I am using function to calculate an expression.

조회 수: 1 (최근 30일)
rihan jericho
rihan jericho 2018년 1월 29일
댓글: Jan 2018년 1월 31일
for example, function y=g(x) y=5+x end This gets my job done when one argument is passed, for example g(5). But what i want to do is , when i put g(5, 'v'), i want it to execute a different formula instead y=5+x. On this occasion, i want it to execute y=5+x.^2 . How can i do this. Any idea please?
  댓글 수: 1
Jan
Jan 2018년 1월 31일
@rihan jericho, Md Epu, Joe Raihan: Please stop deleting your question, after you got an answer.

댓글을 달려면 로그인하십시오.

채택된 답변

Birdman
Birdman 2018년 1월 29일
function y=g(x,v)
if nargin==1
y=5+x;
elseif nargin==2
y=5+x.^2;
end
end
When you call from command line like
g(3)
it returns
8
but when you call like
g(3,'V')
it returns
14

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by