Operators "concatenation" ?

8 次查看(过去 30 天)
Hi,
Is there a way to "concatenate" two or more Matlab operators while chaining several operations ?
For instance, I have a complex function returning a cell array :
C = my_complex_function(input)
And in the following, in another function I would like to perform for instance :
T = unique([C{:}]);
But via a direct call to the first function*, meaning I would like to avoid to create the temporary variable C in these latter function (the goal is to do it in one step instead of two or more).
Is it possible ? Do you know a way to do this ? (Of course I mean without mofifying the first function at all, including its return type)
* The idea is something like
T = unique([my_complex_function(input){:}])
Thanks for any help.

采纳的回答

James Tursa
James Tursa 2020-5-4
No. MATLAB syntax does not allow using ( ) or { } right after a function call. You could of course create a third function to do these two steps behind the scenes if you wanted.
  1 个评论
Nicolas Douillet
Nicolas Douillet 2020-5-4
Ok thank you, this is also what I figured out.
If it wasn't the case I guess the language possibilities would be too complex and maybe also too messy.
I will then do it in two steps.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by