Hello everyone, i have some code that loops quite a bit. I have set up before the loop begins a template array of zeros
sT= zeros(Float64,1000) then within my loop i'm setting an array s = sT s=sT i'm then doing a bunch of work with the s array... at the top of the loop i'd like to "zero out" the array without reinitiallizing it. After an iteration my sT array has values in it and i don't see any reason why that would happen. Any ideas how these values are being put into my sT array? Thank you! Jason