Can i give mathworks a tip on the development of MATLAB?

1 Ansicht (letzte 30 Tage)
cui,xingxing
cui,xingxing am 18 Sep. 2019
Kommentiert: cui,xingxing am 30 Jul. 2021
Many languages have very convenient places, such as python, C / C + + allows custom function parameters default assignment operation, but matlab is "varargin, nargin, inputParser" to control the default assignment operation, more trouble, can be in the new version Add a default function input parameter like python?
for example:
function result = myAdd(a,b,c=1)
result = a+b+c
end
a and b is required param, c is optional param,can matlab new versin add this?

Akzeptierte Antwort

Guillaume
Guillaume am 18 Sep. 2019
Bearbeitet: Guillaume am 18 Sep. 2019
You can suggest whatever you want to mathworks via a service request. Whether or not, they act on it is another matter.
For your particular suggestion, you're in luck this has just been added to R2019b via the arguments block. Not exactly the same syntax as your suggestion, but more flexible anyway:
%R2019b only
function result = myAdd(a, b, c)
arguments
c (1, 1) double = 1
end
result = a+b+c;
end

Weitere Antworten (0)

Kategorien

Mehr zu Argument Definitions 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