Click here to Skip to main content
6,822,613 members and growing! (19,741 online)
Email Password   helpLost your password?
General Programming » Algorithms & Recipes » Parsers and Interpreters     Intermediate License: The MIT License

Parsing Mathematical Expressions with muParser

By iberg

A wrapper for the muParser DLL
C# (C#2.0), Windows, .NET (.NET3.0), Visual-Studio, Dev
Revision:5 (See All)
Posted:12 Apr 2007
Updated:24 Jan 2010
Views:36,893
Bookmarked:66 times
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
15 votes for this article.
Popularity: 5.49 Rating: 4.67 out of 5
1 vote, 6.7%
1

2
1 vote, 6.7%
3

4
13 votes, 86.7%
5
muParser_cs.jpg

Introduction

This article features a C# wrapper for the muParser DLL. muParser is a fast mathematical expressions parser which transforms a mathematical expression into bytecode. Since writing it, I have received some queries about using the parser with .NET. So far, no real solution existed since muParser is native C++ code. This project will close the gap between the unmanaged parser DLL and the managed .NET environment. It is not meant to give you a detailed overview on muParser itself. Please use the following pages for this:

The functionality and member functions of the C# wrapper are almost identical, with a few exceptions mentioned in this document.

Features

The aim of this code is to provide a complete wrapper of muParser. Some of the more advanced and rarely used features could not be made accessible due to their intrinsic "unmanaged" nature. The following list shows you what features are available in C#:

  • User-defined operators
    • binary operators
    • postfix operators
    • infix operators
  • User-defined functions
    • with a fixed number of up to five arguments
    • with variable number of arguments
    • with a single string argument (for database queries)
  • User-defined constants
    • numeric constants
    • string constants
  • User-defined variables
    • unlimited in number
    • assigning variables in terms of other variables is possible
  • Custom value recognition callbacks
    • support for binary and hex values
    • can be used to implement database queries
  • Parser functions/operators

Built-in Functions

The following table gives an overview of the functions supported by the default implementation. It lists the function names, the number of arguments and a brief description.

Name Argc. Explanation
sin 1 sine function
cos 1 cosine function
tan 1 tangens function
asin 1 arcus sine function
acos 1 arcus cosine function
atan 1 arcus tangens function
sinh 1 hyperbolic sine function
cosh 1 hyperbolic cosine
tanh 1 hyperbolic tangens function
asinh 1 hyperbolic arcus sine function
acosh 1 hyperbolic arcus tangens function
atanh 1 hyperbolic arcus tangens function
log2 1 logarithm to the base 2
log10 1 logarithm to the base 10
log 1 logarithm to the base 10
ln 1 logarithm to base e (2.71828...)
exp 1 e raised to the power of x
sqrt 1 square root of a value
sign 1 sign function, -1 if x<0; 1 if x>0
rint 1 round to nearest integer
abs 1 absolute value
if 3 if ... then ... else ...
min var. min of all arguments
max var. max of all arguments
sum var. sum of all arguments
avg var. mean value of all arguments

Built-in Binary Operators

The following table lists the default binary operators supported by the parser:

Operator Meaning Priority
= assignment* -1
and logical AND 1
or logical OR 1
xor logical XOR 1
<= less or equal 2
>= greater or equal 2
!= not equal 2
== equal 2
> greater than 2
< less than 2
+ addition 3
- subtraction 3
* multiplication 4
/ division 4
^ raise x to the power of y 5

*The assignment operator is special since it changes one of its arguments and can only be applied to variables.

How It Works

The wrapper defines three classes:

  • muWrapper.Parser

    This is the parser object. You need to create an instance of this object in order to calculate an expression. Look at the muParser homepage for more detailed description.

  • muWrapper.ParserException
  • muWrapper.ParserVariable

Parser and ParserException are similar to their C++ counterparts and will not be documented here in detail. For details, refer to the C++ documentation and the sample source code.

ParserVariable is new and encapsulates a double value used as a variable. This is necessary since for each variable muParser needs a pointer to double. Using C#, it is hard to get a pointer that remains fixed during the lifetime of a class. ParserVariable avoids this trouble by using the DLL itself to create and release a pointer to double. In short, it hides the variable pointer from the garbage collector.

Using the Code

In order to use the code, you need the muParser.dll which is part of this archive. Make sure to place a copy of the DLL into your application directory or in a directory where the system can find it. Finally, add the file muParser.cs to your project. The following code samples assume you are either in namespace muWrapper or have a corresponding using statement.

Setting Up the Parser

In order to use the parser, create an instance of it.

Parser parser = new muParser();

Defining Variables

Create an instance of a ParserVariable and set up a corresponding parser variable. You can default initialize the variable to a user defined value using the constructor.

ParserVariable var = new ParserVariable(10);
parser.DefineVar("my_var", var);

Setting Up and Calculating an Expression

Finally, set up the expression and calculate the result.

parser.SetExpr("10*sin(my_var)");
double val = m_parser.Eval();

Defining Custom Functions

You can set up your own functions and operators using delegates. The parser defines the following type that must be implemented in your code in case you'd like to use custom functions:

// Functions taking double arguments
public delegate double Fun1Delegate(double val1);
public delegate double Fun2Delegate(double val1, double val2);
public delegate double Fun3Delegate(double val1, double val2, double val3);
public delegate double Fun4Delegate(double val1, double val2, double val3, 
    double val4);
public delegate double Fun5Delegate(double val1, double val2, double val3, 
    double val4, double val5);

// Functions taking an additional string parameter
public delegate double StrFun1Delegate(String name);
public delegate double StrFun2Delegate(String name, double val1);
public delegate double StrFun3Delegate(String name, double val1, double val2);

  // Functions taking unlimited number of variables
  public delegate double MultFunDelegate(
      [MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)] double[] array,
      int size);

Registering callbacks can be done like this:

// Add additional parser functions [optional]
parser.DefineFun("fun1", new muParser.Fun1Delegate(fun1) );
parser.DefineFun("fun2", new muParser.Fun2Delegate(fun2) );
parser.DefineFun("fun3", new muParser.Fun3Delegate(fun3) );
parser.DefineFun("fun4", new muParser.Fun4Delegate(fun4) );
parser.DefineFun("fun5", new muParser.Fun5Delegate(fun5) );
parser.DefineFun("prod", new muParser.MultFunDelegate(prod) );

// add additional operators [optional]
parser.DefineOprt("%", new muParser.Fun2Delegate(fun2), 2 );
parser.DefinePostfixOprt("m", new muParser.Fun1Delegate(fun1));

The first parameter to DefineFun or DefineOprt is the identifier, the second parameter is the delegate used as callback.

Dealing with Errors

Errors are reported by throwing an exception of type ParserException. Use the member functions of this class to get the error details.

try
{
    parser = new muParser();

    // use parser
    //...
    //...
    //...
}
catch (ParserException exc)
{
    string sMsg;
    sMsg += string.Format("  Expression:  \"{0}\"\n", exc.Expression);
    sMsg += string.Format("  Message:     \"{0}\"\n", exc.Message);
    sMsg += string.Format("  Token:       \"{0}\"\n", exc.Token);
    sMsg += string.Format("  Position:      {0}\n", exc.Position);

    Console.WriteLine(sMsg);
}

License

Copyright (c) 2007 Ingo Berg

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

History

  • Rev. 1.00 - 09.04.2007
    Initial release of the muParser C# wrapper

License

This article, along with any associated source code and files, is licensed under The MIT License

About the Author

iberg


Member
I graduated from TU Bergakademie Freiberg as a geophysicist. Currently I'm working as a software engineer in a company in Dresden Germany. I'm doing software development mainly in C/C++, C# and sometimes in Java. The company i'm currently working for is developing test systems for the semiconductor industry.

For other projects of mine visit my webpage beltoforion.de.


Occupation: Software Developer
Location: Germany Germany

Other popular Algorithms & Recipes articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 50 (Total in Forum: 50) (Refresh)FirstPrevNext
NewsArchive Updated Pinmemberiberg14:25 12 Jan '10  
GeneralRe: Archive Updated Pinmemberchapelet4:47 2 Feb '10  
GeneralRe: Archive Updated [modified] Pinmemberiberg12:19 2 Feb '10  
GeneralRe: Archive Updated Pinmemberchapelet3:32 3 Feb '10  
GeneralRe: Archive Updated Pinmemberiberg4:41 3 Feb '10  
QuestionBadImageFormatException PinmemberCedrik Meier9:27 6 Dec '09  
AnswerRe: BadImageFormatException PinmemberJamesXI9:48 17 Dec '09  
GeneralRe: BadImageFormatException Pinmemberiberg11:23 17 Dec '09  
GeneralHow to extend the muparser to have User defined functions having multiple string parameters PinmemberAnanda Sreenivas23:56 12 Oct '09  
GeneralRe: How to extend the muparser to have User defined functions having multiple string parameters Pinmemberiberg12:25 13 Oct '09  
GeneralNice PinmemberErik Molenaar8:38 18 Jun '09  
GeneralQuestion about nulls PinmemberRam Cronus5:32 11 Mar '09  
GeneralRe: Question about nulls Pinmemberiberg8:10 11 Mar '09  
GeneralRe: Question about nulls PinmemberRam Cronus12:52 11 Mar '09  
GeneralRe: Question about nulls Pinmemberiberg23:55 11 Mar '09  
GeneralRe: Question about nulls PinmemberRam Cronus0:32 12 Mar '09  
GeneralUsing this parser for smart device applications PinmemberMember 227776614:00 8 Mar '09  
GeneralRe: Using this parser for smart device applications Pinmemberiberg2:17 26 Mar '09  
GeneralArchive updated to muParser V1.31 Pinmemberiberg9:56 19 Jan '09  
QuestionHow about memory leaks in the unmanaged code? PinmemberAdrian Olszewski6:44 3 Jan '09  
AnswerRe: How about memory leaks in the unmanaged code? Pinmemberiberg14:02 3 Jan '09  
GeneralAccessViolatingException [modified] PinmemberOtis6664:07 31 Oct '08  
AnswerRe: AccessViolatingException Pinmemberiberg9:53 19 Jan '09  
GeneralRe: AccessViolatingException PinmemberJamesXI9:54 17 Dec '09  
GeneralRe: AccessViolatingException Pinmemberiberg12:10 17 Dec '09  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads.

PermaLink | Privacy | Terms of Use
Last Updated: 24 Jan 2010
Editor: Deeksha Shenoy
Copyright 2007 by iberg
Everything else Copyright © CodeProject, 1999-2010
Web21 | Advertise on the Code Project