Azzera filtri
Azzera filtri

Varargin - mistake in my example

2 visualizzazioni (ultimi 30 giorni)
Gennaro Arguzzi
Gennaro Arguzzi il 13 Mag 2017
Risposto: Andrei Bobrov il 13 Mag 2017
Hi everyone, I wrote the following function:
function [x] = ingressi_arbitrari(varargin)
x=0;
for k=1:nargin
x=x+1;
end
end
Why if I run a=ingressi_arbitrari([2 3]) in the command window, the result is a=1 instead of a=2 (I choose two input arguments)?
Thank you very much.

Risposta accettata

Walter Roberson
Walter Roberson il 13 Mag 2017
You only have one input argument, that happens to be length 2. If you had
a=ingressi_arbitrari([2 3], [7; 1; 8; 5])
then you would have two input arguments, the first length 2 and the second length 4

Più risposte (1)

Andrei Bobrov
Andrei Bobrov il 13 Mag 2017
use:
ingressi_arbitrari(2,3)

Categorie

Scopri di più su Manage Products in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by