Do mex functions support keyword assignment syntax?

4 Ansichten (letzte 30 Tage)
Cesar C
Cesar C am 6 Nov. 2023
Kommentiert: Walter Roberson am 6 Nov. 2023
One may call a native matlab function using any of the following syntaxes:
imwrite(img, fpath, 'Alpha', alpha); % key-value pair using char as key
imwrite(img, fpath, "Alpha", alpha); % key-value pair using string as key
imwrite(img, fpath, Alpha=alpha); % keyword assignment
Do mex files support the keyword assignment syntax? If so, what is the expected type when receiving the data in the matlab::ArgumentList input object (string, char, struct, something else...)?

Akzeptierte Antwort

Stephen23
Stephen23 am 6 Nov. 2023
Verschoben: Walter Roberson am 6 Nov. 2023
A few simple experiments show that key=value assignment is converted by the parser into 'key',value. I don't see why it would be any different when calling mex files, as this is something that the parser does all by itself, before anything happens with the function itself.
  1 Kommentar
Walter Roberson
Walter Roberson am 6 Nov. 2023
In a discussion not long ago, Mathworks says that at present the called function cannot tell which syntax the options were specified with; https://blogs.mathworks.com/matlab/?p=1005#reply_2532411

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by