natural-logarithm Questions
6
Solved
Using numpy, how can I do the following:
ln(x)
Is it equivalent to:
np.log(x)
I apologise for such a seemingly trivial question, but my understanding of the difference between log and ln is t...
Colosseum asked 15/5, 2012 at 1:30
1
I have created an algorithm for the base of the natural logarithm with HTML and JS. And this is the code:
HTML: bonl.html
<html>
<head>
<title>bonl</title>
</head>
...
Masakomasan asked 8/5, 2021 at 8:56
2
Solved
In this assignment I have completed all the problems except this one. I have to create a python script to solve an equation (screenshot).
Unfortunately, in my research all over the internet I cann...
Downhearted asked 30/8, 2016 at 19:44
3
Solved
Good day,
I am struggling with R and natural logarithm (ln). Firstly, I cannot find a ln(x) function in R. I have noticed that log(x) is the same as ln(x) (when using ln(x) with a calculator).
In...
Sherellsherer asked 19/6, 2014 at 10:59
3
Solved
I have the following equation that I want to solve with respect to a:
x = (a-b-c+d)/log((a-b)/(c-d))
where x, b, c, and d are known. I used Wolfram Alpha to solve the equation, and the result is...
Comenius asked 24/2, 2015 at 17:48
1
Solved
I'm translating Matlab code (written by someone else) to Python.
In one section of the Matlab code, a variable X_new is set to a value drawn from a log-normal distribution as follows:
% log norma...
Poinciana asked 14/3, 2016 at 4:32
1
Solved
Does the scipy's logsumexp() implementation include the hack that prevents underflow by subtracting the maximum found value in the array from each element?
The one explained here below, where m = ...
Alban asked 3/9, 2014 at 18:43
2
Solved
I'm doing some statistics calculations. I need them to be fast, so I rewrote most of it to use SSE. I'm pretty much new to it, so I was wondering what the right approach here is:
To my knowledge, ...
Marcello asked 17/1, 2012 at 23:8
1
© 2022 - 2024 — McMap. All rights reserved.