I would like to return multiple outputs when I call my function. However, I do not want to return all outputs but only, say, the first, the third and the fourth from a total number of, say, 7 outputs.
I've tried s.th. like this but this leads to an error:
a, b, c = myfunc()[[0, 2, 3]]