lets say you have some function
x = foo(alpha, beta);
and you want to test the function for different alpha values while saving the different x values with a name associated to the different alpha values.
For example if alpha = 1:1:10;
then then i would like to save x_1 , x_2 ,........,x_9 , x_10 as separate results
I've tried running different loops and such but I can't figure out how to keep the x values from being replaced