Tagged Questions
2
votes
0answers
117 views
Syntax colouring when using Symbolize
I need to use symbols with suffixes in order to make my code readable in relation to the Eurocodes. To do this I use Symbolize from the ...
4
votes
1answer
68 views
Setting a binary operator Flat
I defined a binary operator in as the first statement in a new Mathematica notebook.
{x1_, y1_} ⊕ {x2_, y2_} := Module[{}, Print["do anything"];]
where the code ...
8
votes
2answers
259 views
How can one define an infix operator with an arbitrary unicode character?
You can setup "UsefulFunction[a, b]" to use custom infix notation "a [LeftRightArrow] b" as follows:
...
16
votes
1answer
278 views
Prefix operator with low precedence
The question is simple, but I will elaborate on the background as well for those interested in the idea:
How to define a new operator with specified precedence value?
Background
Mathematica was ...