Code Monkey home page Code Monkey logo

Comments (3)

andreaferretti avatar andreaferretti commented on May 29, 2024

I see what happened here. It used to be the case that (in the module math) log was a function of two parameters log(x, base) with a default for base of (I think) e.

In recent versions of Nim, the default was removed, and as such expressions such as log(3.0) do not compile anymore (the base parameter is required). The way universal functions are generated expect a similar one parameter function for the scalar case. Notice that log2 and log10 are still working, since they have an implied base.

I am going to remove neo.log, since - as you point out - it does not work anymore. You can get back the functionality by doing something like

import math
import neo

proc mylog[T: SomeFloat](x: T): T = log(x, e) # or whatever base you prefer
makeUniversal(mylog)

let v1 = vector(1.0, 2.0, 3.0)
let v2 = mylog(v1)

from neo.

freevryheid avatar freevryheid commented on May 29, 2024

I see there is now a ln function for natural log.

from neo.

andreaferretti avatar andreaferretti commented on May 29, 2024

Thank you, added it

from neo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.