I am calling a function in matlab that returns a array but I seem to have to store it in a variable to index it.
This is what is working:
lol = coeffvalues(f4)
needed_ans = lol(1)
but coming from python I expect something like this :
needed_ans = coeffvalues(f4)(1)
without something like that I cannot pipe values as I imagine, is there a solution