Home > Software engineering >  Is there a way to define operators in C ? (or another language)
Is there a way to define operators in C ? (or another language)

Time:02-20

I am aware about operator overloading, but this is not what I am talking about.

I do quite a bit of scientific computation in C . So for example I have to compute gradients, dot products, laplacians, hessians...

All of these usually have well defined and standrad math symbols. The gradient uses nabla, the hessian nabla^2 the laplacian \delta ...

I normally have to write vec Gradient(fun_ptr) or Hessian(fun_ptr).

The issues is that this makes the code deviate from the paper I am implementing and it makes it just a little harder to catch when you copied something wrong.

Is there any way to define the \nabla character as an operator for example?

CodePudding user response:

Is there a way to define operators in C ?

No. You can only overload (some of) the existing operators for custom types in C .

You can define functions that implement the operations that you want, and if you encode your source code in a character set that has those symbols (i.e. you use Unicode), and your compiler supports it (which isn't guaranteed since the symbols aren't part of the basic character set), then you can use the symbols as names of those functions. But you cannot call the functions with infix notation in C .

(or another language)

You can define infix functions in Haskell.

  • Related