Hi Im trying to understand how to use nargin but am having an issue. Hopefully someone can shed some light on. I copied this function from my text book
function z = sqrtfun(x,y)
if (nargin==1)
z = sqrt(x);
elseif (nargin==2)
z = sqrt(x+y);
end
Then in another script I have put together this code to call the function
clc;
clear;
close all;
x = input('x');
y = input('y');
z = sqrtfun(x,y);
fprintf('Answer z ::: %4.2f\n', z);
The issue i'm having is that if i leave y blank no value is displayed for z. If i enter a value for x and y i get an output value for z. I don't know why this happens??

 채택된 답변

Walter Roberson
Walter Roberson 2016년 9월 22일

2 개 추천

When you leave y blank in response to an input() prompt, what you get back is an empty array, and you provide that empty array as an argument. nargin tests the number of arguments passed, not what value they are, so it knows you are passing two arguments. This leads to the calculation
sqrt(x+y)
where x is not empty but y is empty. The sum of a non-empty array and an empty array is the empty array, so the result is empty.
You should modify your code to
function z = sqrtfun(x,y)
if (nargin==1) || isempty(y)
z = sqrt(x);
else
z = sqrt(x+y);
end

댓글 수: 2

Sultan Al-Hammadi
Sultan Al-Hammadi 2018년 11월 27일
what does nargin do?
Mukesh Mani
Mukesh Mani 2023년 7월 6일
nargin tests the number of arguments passed

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

추가 답변 (1개)

KSSV
KSSV 2016년 9월 22일

0 개 추천

You change the function as follows:
function z = sqrtfun(x,varargin)
if (nargin==1)
z = sqrt(x);
elseif (nargin==2)
y = varargin{1} ;
z = sqrt(x+y);
end
When you enter one value i.e. x nargin = 1 then it goes to if, if you enter two values i.e x,y nargin will be 2. y will be stored in varargin and we are calling it in else statement.

댓글 수: 2

Sultan Al-Hammadi
Sultan Al-Hammadi 2018년 11월 27일
what does nargin do?
and what is the functionality of "varargin{1}"?
Steven Lord
Steven Lord 2018년 11월 27일
See the description and examples on the nargin function documentation page for more information about what it does and how to use it.

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

카테고리

도움말 센터File Exchange에서 Argument Definitions에 대해 자세히 알아보기

태그

질문:

2016년 9월 22일

댓글:

2023년 7월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by