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

1 visualización (últimos 30 días)
cui,xingxing
cui,xingxing el 18 de Sept. de 2019
Comentada: cui,xingxing el 30 de Jul. de 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?

Respuesta aceptada

Guillaume
Guillaume el 18 de Sept. de 2019
Editada: Guillaume el 18 de Sept. de 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

Más respuestas (0)

Categorías

Más información sobre Argument Definitions en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by