vote up 48 vote down star
37

Recently I've been learning Lua and I love how easy it is to write a function that returns a function. I know it's fairly easy in Perl as well, but I don't think I can do it in C without some heartache. How do you write a function generator in your favorite language?


So that it's easier to compare one language to another, please write a function that generates a quadratic formula:

f(x) = ax^2 + bx + c

Your function should take three values (a, b, and c) and returns f. To test the function, show how to generate the quadratic formula:

f(x) = x^2 - 79x + 1601

Then show how to calculate f(42). I'll post my Lua result as an answer for an example.


Some additional requirements that came up:

  1. All of a, b, c, x, and f(x) should be floating point numbers.

  2. The function generator should be reentrant. That means it should be possible to generate:

    g(x) = x^2 + x + 41
    

    And then use both f(x) and g(x) in the same scope.

Most of the answers already meet those requirements. If you see an answer that doesn't, feel free to either fix it or note the problem in a comment.

flag
show 11 more comments

52 Answers

1 2 next
vote up 14 vote down check

C - no globals, no non-standard library

Not pretty, and not very well generalized, but...

typedef struct tagQuadraticFunctor QuadraticFunctor, *PQuadraticFunctor;

typedef double (*ExecQuadratic)(PQuadraticFunctor f, double x);

struct tagQuadraticFunctor{
    double a;
    double b;
    double c;
    ExecQuadratic exec;
};

double ExecQuadraticImpl(PQuadraticFunctor f, double x){
    return f->a * x * x + f->b * x + f->c;
}

QuadraticFunctor Quadratic(double a, double b, double c){
    QuadraticFunctor rtn;
    rtn.a = a;
    rtn.b = b;
    rtn.c = c;
    rtn.exec = &ExecQuadraticImpl;
    return rtn;
}

int main(){
    QuadraticFunctor f = Quadratic(1, -79, 1601);

    double ans = f.exec(&f, 42);

    printf("%g\n", ans);
}


and here's a version that generalizes the functor a little more, and now it's really starting to look like C wannabe C++:

#include <stdarg.h>

typedef struct tagFunctor Functor, *PFunctor;

typedef void (*Exec)(PFunctor f, void *rtn, int count, ...);

struct tagFunctor{
    void *data;
    Exec exec;
};

void ExecQuadratic(PFunctor f, void *rtn, int count, ...){
    if(count != 1)
        return;

    va_list vl;
    va_start(vl, count);
    double x = va_arg(vl, double);
    va_end(vl);

    double *args = (double*)f->data;
    *(double*)rtn = args[0] * x * x + args[1] * x + args[2];
}

Functor Quadratic(double a, double b, double c){
    Functor rtn;
    rtn.data = malloc(sizeof(double) * 3);
    double *args = (double*)rtn.data;
    args[0] = a;
    args[1] = b;
    args[2] = c;
    rtn.exec = &ExecQuadratic;
    return rtn;
}

int main(){
    Functor f = Quadratic(1, -79, 1601);

    double ans;
    f.exec(&f, &ans, 1, 42.0); // note that it's very important
                               // to make sure the last argument
                               // here is of the correct type!

    printf("%g\n", ans);

    free(f.data);
}
link|flag
show 6 more comments
vote up 11 vote down

Lua

function quadratic (a, b, c)
   return function (x)
             return a*(x*x) + b*x + c
          end
end

local f = quadratic (1, -79, 1601)

print (f(42))

The result:

47

Several other answers have further generalized the problem to cover all polynomials. Lua handles this case as well:

function polynomial (...)
   local constants = {...}

   return function (x)
             local result = 0
             for i,v in ipairs(constants) do
                result = result + v*math.pow(x, #constants-i)
             end
             return result
          end
end
link|flag
show 3 more comments
vote up 38 vote down

Haskell

quadratic a b c = \x -> a*x*x + b*x + c

or, I think more neatly:

quadratic a b c x = a*x*x + b*x + c

(if you call it with only three parameters, you get back a function ready for the fourth)

To use:

let f = quadratic 1 -79 1601 in f 42

Edit

Generalizing it to arbitrary-order polynomials (as the OCaml answer does) is even nicer in Haskell:

polynomial coeff = sum . zipWith (*) coeff . flip iterate 1 . (*)
f = polynomial [1601, -79, 1]
main = print $ f 42

Perverse

Treating functions as if they were numbers:

{-# LANGUAGE FlexibleInstances #-}
instance Eq (a -> a) where (==) = const . const False
instance Show (a -> a) where show = const "->"
instance (Num a) => Num (a -> a) where
    (f + g) x = f x + g x; (f * g) x = f x * g x
    negate f = negate . f; abs f = abs . f; signum f = signum . f
    fromInteger = const . fromInteger
instance (Fractional a) => Fractional (a -> a) where
    (f / g) x = f x / g x
    fromRational = const . fromRational

quadratic a b c = a*x^2 + b*x + c
    where x = id :: (Fractional t) => t -> t
f = quadratic 1 (-79) 1601
main = print $ f 42

...although if 1 (-79) 1601 weren't numeric literals, this would require some additional application of const.

link|flag
show 9 more comments
vote up 9 vote down

perl

sub quadratic {
    my ($a, $b, $c) = @_;
    return sub {
    	my ($x) = @_;
    	return $a*($x*$x) + $b*$x + $c;
    }
}

my $f = quadratic (1, -79, 1601);

print $f->(42);
link|flag
show 1 more comment
vote up 45 vote down

JavaScript

function quadratic(a, b, c) 
{
    return function(x) 
    {
        return a*(x*x) + b*x +c;
    }
}

var f = quadratic(1, -79, 1601);
alert(f(42));
link|flag
4  
Javascript as a language is beautiful; it's the cross-browser / speed issues that cause the suckage. – John McCollum Mar 13 at 22:31
show 5 more comments
vote up 12 vote down

Ruby

def foo (a,b,c)
  lambda {|x| a*x**2 + b*x + c}
end

bar = foo(1, -79, 1601)

puts bar[42]

gives

47
link|flag
1  
Methods and variables are in different namespaces. It would be ambiguous whether you wanted to call the method bar or the lambda that's the value of the variable bar. Proc#call is the "real" method for calling a lambda, but since lambdas are objects and Ruby is TIMTOWTDI, the [] method is an alias. – Chuck Mar 15 at 1:49
show 3 more comments
vote up 4 vote down

MATLAB

Using an anonymous function

function f=quadratic(a,b,c)
% FUNCTION quadratic. returns an inline polynomial with coefficients a,b,c 
f = @(x)a*x^2+b*x+c;

or using inline which is not as clean/concise

function f=quadratic2(a,b,c)
% FUNCTION quadratic. returns an inline polynomial with coefficients a,b,c 
f = inline(['(',num2str(a),'*x^2)+(',num2str(b),'*x)+(',num2str(c),')'],'x');

Usage

>> ff = quadratic(1,-79,1601);
>> ff(42)
ans = 
    47
link|flag
show 1 more comment
vote up 9 vote down

PHP

function quadratic($a, $b, $c) {
    return create_function('$x',
        'return ' . $a . ' * ($x * $x) + ' . $b . ' * $x + ' . $c . ';'
    );
}

$f = quadratic(1, -79, 1601);
echo $f(42) . "\n";

The result:

47

link|flag
show 6 more comments
vote up 3 vote down

JavaScript

function quadratic(a,b,c) {
    return function(x) {
        return a*(x*x) + b*x + c;
    }
}

var f = quadratic (1, -79, 1601);

f(42);
link|flag
vote up 29 vote down

Python

def quadratic(a, b, c):
    return lambda x: a*x**2 + b*x + c

print quadratic(1, -79, 1601)(42) 
# Outputs 47


Without using lambda (functions can be passed around in Python like any variable, class etc):

def quadratic(a, b, c):
    def returned_function(x):
        return a*x**2 + b*x + c
    return returned_function
print quadratic(1, -79, 1601)(42)
# Outputs 47


Equivalent using a class rather than returning a function:

class quadratic:
    def __init__(self, a, b, c):
        self.a, self.b, self.c = a, b, c
    def __call__(self, x):
        return self.a*x**2 + self.b*x + self.c

print quadratic(1, -79, 1601)(42)
# Outputs 47
link|flag
1  
I would say that returning a function here is more Pythonic, since the object returned from quadratic() (in either version) is only meant to be called. The class version is like creating an iterable class when all you need is a generator function—overkill, without any real benefit. – Miles Mar 16 at 23:28
show 2 more comments
vote up 7 vote down

C (sorta)

clang (LLVM's C compiler) has support for what they call blocks (closures in C):

double (^quadratic(double a, double b, double c))(double) {
    return _Block_copy(^double(double x) {return a*x*x + b*x + c;});
}

int main() {
    double (^f)(double);
    f = quadratic(1, -79, 1601);
    printf("%g\n", (^f)(42));
    _Block_release(f);
    return 0;
}

At least, that's how it should work. I haven't tried it out myself.

link|flag
show 4 more comments
vote up 11 vote down

C++

#include <iostream>

class Quadratic
{
	int a_,b_,c_;
public:
	Quadratic(int a, int b, int c)
	{
		a_ = a;
		b_ = b;
		c_ = c;
	}
	int operator()(int x)
	{
		return a_*x*x + b_*x + c_;
	}
}

int main()
{
	Quadratic f(1,-79,1601);
	std::cout << f(42);
	return 0;
}
link|flag
1  
@Jon: It's a very common technique, and used a lot in the standard library. An object that overloads operator() is called a functor. Very useful if you want to use some custom comparer while sorting with std::sort, for example – jalf Mar 13 at 20:43
show 8 more comments
vote up 16 vote down

Clojure

(defn quadratic [a b c]
  #(+ (* a % %) (* b %) c))

((quadratic 1 -79 1601) 42)    ; => 47

Edit

Arbitrary-order polynomials:

(use 'clojure.contrib.seq-utils 'clojure.contrib.math)
(defn polynomial [& cs]
  #(apply +
          (map (fn [[pow c]] (* c (expt % pow)))
               (indexed cs))))

((polynomial 1601 -79 1) 42)   ; => 47

Featuring parameter list destructuring goodness and some handy libs from clojure.contrib.

link|flag
show 2 more comments
vote up 10 vote down

C#

public Func<double, double> F(double a, double b, double c){
    Func<double, double> ret = x => a * x * x + b * x + c;

    return ret;
}

public void F2(){
    var f1 = F(1, -79, 1601);

    Console.WriteLine(f1(42));
}
link|flag
1  
F could just return the lambda directly, instead of using that intermediate ret variable. – Earwicker Mar 13 at 21:57
1  
yeah you right, just accostumed to do this for debugging purposes – Jhonny D. Cano -Leftware- Mar 13 at 22:05
vote up 23 vote down

C# using only Lambdas

Func<double, double, double, Func<double, double>> curry = 
    (a, b, c) => (x) => (a * (x * x) + b * x + c);
Func<double, double> quad = curry(1, -79, 1601);
link|flag
vote up 17 vote down

Scheme

(define (quadratic a b c)
    (lambda (x)
        (+ (* a x x) (* b x) c)) )

(display ((quadratic 1 -79 1601) 42))
link|flag
vote up 14 vote down

F#

Here's a nice one line example in F#:

let quadratic a b c x = a*x*x + b*x + c
let f = quadratic 1 -79 1601 // Use function currying.

printfn "%i" (f 42)

And for arbitrary-order:

let polynomial coeffs x = 
    coeffs |> List.mapi (fun i c -> c * (pown x i)) |> List.sum
let f = polynomial [1601; -79; 1]
f 42

And to generalize over numerics:

let inline polynomial coeffs x =
    coeffs |> List.rev |> List.mapi (fun i c -> c * (pown x i)) |> List.sum

> let f = polynomial [1601.; -79.; 1.];;
val f : (float -> float)

> let g = polynomial [1601m; -79m; 1m];;
val g : (decimal -> decimal)
link|flag
show 1 more comment
vote up 12 vote down

Java

(untested)

First, we need a Function interface:

public interface Function {
    public double f(double x);
}

And a method somewhere to create our quadratic function. Here we're returning an anonymous implementation of our Function interface. This is how Java does "closures". Yeah, it's ugly. Our parameters need to be final for this to compile (which is good).

public Function quadratic(final double a, final double b, final double c) {
    return new Function() {
        public double f(double x) {
            return a*x*x + b*x + c;
        }
    };
}

From here on out, it's reasonably clean. We get our quadratic function:

Function ourQuadratic = quadratic(1, -79, 1601);

and use it to get our answer:

double answer = ourQuadratic.f(42);
link|flag
vote up 6 vote down

Python

In Python using only lambdas:

curry = lambda a, b, c: lambda x: a*x**2 + b*x + c
quad = curry(1, -79, 1601)
link|flag
vote up 7 vote down

C

With the FFCALL library installed,

#include <trampoline.h>

static struct quadratic_saved_args {
    double a;
    double b;
    double c;
} *quadratic_saved_args;

static double quadratic_helper(double x) {
    double a, b, c;
    a = quadratic_saved_args->a;
    b = quadratic_saved_args->b;
    c = quadratic_saved_args->c;
    return a*x*x + b*x + c;
}

double (*quadratic(double a, double b, double c))(double) {
    struct quadratic_saved_args *args;
    args = malloc(sizeof(*args));
    args->a = a;
    args->b = b;
    args->c = c;
    return alloc_trampoline(quadratic_helper, &quadratic_saved_args, args);
}

int main() {
    double (*f)(double);
    f = quadratic(1, -79, 1601);
    printf("%g\n", f(42));
    free(trampoline_data(f));
    free_trampoline(f);
    return 0;
}
link|flag
show 3 more comments
vote up 11 vote down

Common Lisp

(defun make-quad (a b c)
    #'(lambda (x) (+ (* a x x) (* b x) c)))

(funcall (make-quad 1 -78 1601) 42)
link|flag
show 1 more comment
vote up 15 vote down

Java

You don't.

And here's why:

// OneArgFunction.java
// Generic interface for reusability!
public interface OneArgFunction<P,R> {
    public R evaluate(P param);
}
// Somewhere in your code
public OneArgFunction<Double, Double> quadratic(final double a, final double b, final double c) {
    return new OneArgFunction<Double, Double>() {
        public Double evaluate(Double param) {
            return param*param*a + param*b + c;
        }
    };
}
// And...
OneArgFunction<Double, Double> quadratic = quadratic(1, -79, 1601);
System.out.println(quadratic.evaluate(42));
link|flag
show 6 more comments
vote up 7 vote down

Prolog

test :-
    create_quadratic([1, -79, 1601], Quadratic),
    evaluate(Quadratic, 42, Result),
    writeln(Result).

create_quadratic([A, B, C], f(X, A * X**2 + B * X + C)).

evaluate(f(X, Expression), X, Result) :-
    Result is Expression.

Testing:

?- test.
47
true.
link|flag
vote up 5 vote down

Scala

def makeQuadratic(a: Int, b: Int, c: Int) = (x: Int) => a * x * x + b * x + c
val f = makeQuadratic(1, -79, 1601)
println(f(42))

Edit: Apparently, the above solution uses integer values instead of floating point values. To comply with the new requirements, makeQuadratic must be changed to:

def makeQuadratic(a: Float, b: Float, c: Float) = 
        (x: Float) => a * x * x + b * x + c
link|flag
vote up 21 vote down

PHP 5.3

function quadratic($a, $b, $c) 
{
    return function($x) use($a, $b, $c)
    {
        return $a*($x*$x) + $b*$x + $c;
    };
}

$f = quadratic(1, -79, 1601);
echo $f(42);
link|flag
show 1 more comment
vote up 5 vote down

Standard ML

Using functional languages is just way too easy.

fun quadratic (a, b, c) = fn x => a*x*x + b*x + c : real;
val f = quadratic (1.0, ~79.0, 1601.0);
f 42.0;
link|flag
1  
It can be done simpler though. fun quadratic (a, b, c) x = a*x*x + b*x + c; :) – jalf Mar 13 at 20:23
vote up 0 vote down

C (take four, pure ANSI C)

warning, this fails the new "re-entrant" criterion

Not perfect, but...

/* file "quad.c" */

static double _a, _b, _c;

typedef double(*fnptr)(double);

double quad_get(double x)
{
    return _a * x * x + _b * x + _c;
}

fnptr quadratic(double a, double b, double c)
{
    _a = a;
    _b = b;
    _c = c;
    return &quad_get();
}

/* file "quad.h" */

typedef double(*fnptr)(double);
extern fnptr quadratic(double a, double b, double c);

/* file "main.c" */

#include <stdio.h>
#include "quad.h"

int main(void)
{
    fnptr f = quadratic(1, -79, 1601);
    printf("%lf\n", f(42));
    return 0;
}
link|flag
show 3 more comments
vote up 9 vote down

Ocaml

let quadratic a b c = fun x -> a*x*x + b*x + c

but really, thanks to currying, the following is equivalent:

let quadratic a b c x = a*x*x + b*x + c

For compilation reasons, the first is actually better because the compiler wont need to call caml_applyX and caml_curryX. Read more here

How about general polynomials (with floats)?

let polynomial coeff =
    (fun x ->
        snd (List.fold_right 
                (fun co (i,sum) ->
                    ((i+.1.0), sum +. co *. (x ** i))) coeff (0.0,0.0))
     )
link|flag
vote up 4 vote down

Standard ML

(Simpler version than ephemient's answer)

fun quadratic (a, b, c) x = a*x*x + b*x + c : real;
val f = quadratic (1.0, ~79.0, 1601.0);
f 42.0;

or

fun quadratic a b c x = a*x*x + b*x + c : real;
val f = quadratic 1.0 ~79.0 1601.0;
f 42.0;

(but I think the first version more closely matches what was requested)

link|flag
vote up 2 vote down

Perl

Alternate version:

sub fn {
 my ( $aa, $bb, $cc ) = @_;
 sub { $x = shift; $x = $x ** 2 * $aa + $x * $bb + $cc }
}

print fn( 1, -79, 1601 )->( 42 );

One could also actually store the generated function:

$f = fn( 1, -79, 1601 );
print $f->( 42 );
link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.