https://bugs.documentfoundation.org/show_bug.cgi?id=170694

--- Comment #4 from Ivano Mazzarotto <[email protected]> ---
(In reply to Gilvan Vilarim from comment #3)
> Same thing here. Using LibreOffice 26.2.0.3 on Windows 11 64-bit.
> 
> LibreLogo translates correctly the RAIZ function (pt-br) to SQRT, but fails
> to find the function.
> 
> []s

from math import pi, e, sin, cos, asin, acos, tan, atan, exp, log, log2, hypot,
sqrt, log10

print log2(8)         ; logaritmo a base 2
print log(8,2)        ; logaritmo con qualsiasi base
print (hypot(3,4))    ; Teorema di Pitagora – ipotenusa dati i cateti
print sqrt 9          ;  Radice quadrata
print 9**0.5          ;  Radice quadrata
print pow(9,2)        ;  Radice quadrata
print log10 100
print e
print exp(2)          ; funzione esponenziale

all of these now is ok! Thanks
by IM

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to