[Chennaipy] Query on numpy.logspace() in Python

6062_Thirumurugan K thiruak1024 at gmail.com
Tue Jul 6 03:17:52 EDT 2021


Hi,
 Mathematically, logs are related to power by the following equation.

  1. 10^2 = 100
  2. log(100) = 2   * note: base 10

We are finding logspace between 2.0 and 3.0 ( 5 numbers and base as 11 )

evenly spreaded numbers => 2.0, 2.25, 2.50, 2.75, 3.00

taking power to this number => 11^2.0, 11^2.25, 11^2.50, 11^2.75, 11^3.00
( * base 11)

output of this power => 121,  220.36039471, 401.31159963, 730.8527479, 1331

I am not a master at machine learning or numpy. I think this is what
happens behind this. It does not log off the mentioned interval, instead
outputs the power of intervals with respect to the base. *ex 11^2.0 = 121*

for more detail on logs use this link
<http://www.mclph.umn.edu/mathrefresh/logs.html>.

--
Thanks & Regards,
Thirumurugan k
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.python.org/pipermail/chennaipy/attachments/20210706/29df9680/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Screenshot from 2021-07-06 12-38-37.png
Type: image/png
Size: 129888 bytes
Desc: not available
URL: <https://mail.python.org/pipermail/chennaipy/attachments/20210706/29df9680/attachment-0001.png>


More information about the Chennaipy mailing list