I have a vector params1 and I want to assign the values in them to multiple variables like below. Any suggestions?
params1 = [1 2 3 4]
[a,b,c,d] = someFun(params1)
I have a vector params1 and I want to assign the values in them to multiple variables like below. Any suggestions?
params1 = [1 2 3 4]
[a,b,c,d] = someFun(params1)