You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thebookofshaders/glossary/log.md

22 lines
518 B
Markdown

10 years ago
## Log
Return the natural logarithm of the parameter
### Declaration
10 years ago
```glsl
float log(float x)
vec2 log(vec2 x)
vec3 log(vec3 x)
vec4 log(vec4 x)
```
### Parameters
```x``` s### Declarationpecify the value of which to take the natural logarithm.
10 years ago
### Description
```log()``` returns the natural logarithm of ```x```.
<div class="simpleFunction" data="y = log(x); "></div>
### See Also
[log2](index.html#log2.md), [exp](index.html#exp.md), [exp2](index.html#exp2.md), [Chapter 05: Shaping Functions](../05/)