def squared(x): y = x * x return y if name == 'main': squared(x)
I am expecting the above code executed from matlab and get result in matlab variable.
def squared(x): y = x * x return y if name == 'main': squared(x)
I am expecting the above code executed from matlab and get result in matlab variable.