Is it possible to have an inline function inside a cell array to conditionally return an element to be stored?

3 Ansichten (letzte 30 Tage)
Consider I have
mycondition = true;
truestatement = 'yes'; % returned by the inline function when mycondition is true
falsestatement = 'no'; % returned by the inline function when mycondition is false
mycell = {'a' , 'b' , <an inline function to create>};
is it possible to have an inline functrion inside the cell array so that it returns either truestatement or falsestatement without having to do this check outside the cell array and use extra variables?
I know there are different clear ways to do so, but I would like to understand if there is such a way.

Akzeptierte Antwort

Rishabh Mishra
Rishabh Mishra am 1 Okt. 2020
Hi,
The cell arrays in MATLAB are fundamental MATLAB classes/data types which have pre-defined definitions. The cell arrays do not support any such feature wherein you can add elements to it after defining an inline function within cell array initialization. To achieve the require purpose, you must add elements to cell array based on conditions that are defined outside the cell array.
Hope this helps.

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 1 Okt. 2020
Bearbeitet: Walter Roberson am 1 Okt. 2020
No, but for different reasons.
You are wanting an inline function, when executed, that looks in the current workspace for the value of mycondition, and returns a value selected by it.
That would require that the inline function had no parameters.
However, the internal implementation of inline functions always requires that they accept at least one parameter. The function is not required to do anything with the parameter, but it needs to be passed.
There is no inline function equivalent to
f = @() [falsestatement(repmat(~mycondition,size(falsestatement))), truestatement(repmat(mycondition,size(truestatement)))];
f()
because you cannot implement that () empty parameter list for inline()
If you were willing to have the condition be passed in to the inline function instead of expecting it to be read out from the workspace, then that would be do-able -- provided that the values of falsestatement and truestatement and mycondition could be copied into the inline function instead of being referenced dynamically. But pulling out workspace values dynamically is hard for inline functions.
Why do you want to use inline() ? inline() has been recommended against for a long time.
  7 Kommentare
Walter Roberson
Walter Roberson am 2 Okt. 2020
The version
mycondition = true;
disp(mycell{3}()) %-> displays yes
mycondition = false;
disp(mycell{3}()) %-> displays false
would be possible -- the () would trigger the execution of the function handle stored in that location and the function handle can examine the calling workspace value of mycondition and return appropriate value.
But if you do not trigger execution with () then when you access mycell{3} you would get back the function handle, rather than triggering execution of the function handle. You would need to define your own class of objects to get the kind of behaviour you are asking for.
I need to have an anonymous function working like the conditional (ternary) operator as in C language
The C ternary operator cannot store code fragments to be executed later. The C ternary operator can only evaluate at the time of the assignment into the location, and store the completed result there. You can, in C, store the pointer to a function, but in C the function will not be automatically executed when you ask to read the content of the location -- the most you could get back would be the pointer to the function.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Function Creation finden Sie in Help Center und File Exchange

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by