MATLAB: How to delete a particular array and again in the next step create it as a new array in a for loop

arrayMATLABmatrix

Hello,
I am using an array to save the values that are greater than a threshold from a particualr set of values in a for loop.
Can I know how to delete the previous array values and size.And in the next step I want to create it as new array with new size and intialising it to zeros for each iteration of for loop.
Thanks.

Best Answer

Use
your_array=[]
Or
clear Your_array