only accept odd numbered input arguments

11 Ansichten (letzte 30 Tage)
Ahmed Abdulla
Ahmed Abdulla am 29 Mai 2020
Bearbeitet: Adam Danz am 1 Jun. 2020
I am writing a function and I would like it to only run if the input argument is odd, is there an easy to specifcy that the input must be odd.

Akzeptierte Antwort

Adam Danz
Adam Danz am 29 Mai 2020
Bearbeitet: Adam Danz am 1 Jun. 2020
nargin counts the number of input arguments for a function.
mod(x,2) returns 1 when x is odd.
if mod(nargin,2)~=1
error('There must be an odd number of inputs.')
end

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by