How can I know the the size of an inline or anonymous vectorial expression?

1 view (last 30 days)
I need to know if there is a way to know the length/size of a inline expression. In the example, the expression inside the inline is '[(t/2)*u2+u2*t; u2]', which has length 2, I need a command that returns that value for any vector inside the function.
F=inline('[(t/2)*u2+u2*t; u2]', 't', 'u2')

Accepted Answer

José-Luis
José-Luis on 6 Jun 2014
Edited: José-Luis on 6 Jun 2014
nargin(F)
Please accept an answer if it helped you.
  1 Comment
Sean de Wolski
Sean de Wolski on 6 Jun 2014
Assuming size meant number of inputs and not size of the output array. Output size is not necessarily static so can't be measured without trial and error.

Sign in to comment.

More Answers (0)

Categories

Find more on Function Creation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!