45
Views
2
Comments
[Formula] How to calculate LN function
Question
formula
Service icon
Forge asset by Caio Santana Magalhães
Application Type
Service

I'm trying to perform the calculation of the formula using the LN function, but it is not available in the component. Does anyone know if there is a way to perform a calculation using the LN? 

UserImage.jpg
Alexandre Yip

Hi Maykell Ribeiro, 

You might check this component bellow can be suitable for your purpose 

https://www.outsystems.com/forge/component-overview/4035/logarithm-o11

Regards 

2019-01-07 16-04-16
Siya
 
MVP

You can calculate the natural logarithm (ln) of a number using the Math.log function, which is part of the JavaScript standard Math object.

function calculateLn(x) {

  return Math.log(x);

}


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.