There is an array with large input elements named A. I want to define another array, named B, that its elements are obtained by the exponential of the negative of elements in A. I use the following code: B=np.exp(-A) The resulted elements in B are very small that in python they are shown equal to zero. How I can define the precision so that I don't get zero for the elements?
Thanks for your guidance in advance, Zahra