MATLAB: Call to function with multiple outputs

function calls functions multiple output functions

Considering the function with multiple outputs of different array sizes
[y1 y2 y3 y4]=f(x)
sometimes inside a program I just need a certain output value/array, e.g. y2 when calling the function. Is there a way, for example by giving an index to the output array and only getting this output?
Related Question