Expr family objects by Shahrokh Yadegari

To see a directory listing of downloadable files, which also includes older releases, click here.

Back to the Software Page


[expr], [expr~], [fexpr~]

Based on original sources from IRCAM’s jMax Released under BSD License.

The [expr] family is a set of C-like expression evaluation objects for the graphical music language Pure Data. It used to come as an ‘extra’ external, but it is now a built-in native object.

[expr] runs in control rate and evaluates C-like expressions. See below for the list of operators. Multiple expressions separated by semicolons can be defined in a single [expr] object and this results in multiple outlets (up to 100, each for each expression). Expressions are evaluated from right to left (which means that the bottom expression will be the first executed.) The number of inlets in expr are defined by variables that take a few different forms: $i#, $i# and $s# for 'integers', 'floats' and 'symbols' ('#' is an inlet number from 1 up to 100, ordered from left to right). As an example, we can have 3 inlets defined as "$i1", "$f2" and "$s3", where:

Arrays and variables (defined using the [value] object) can be accessed the same way one dimensional arrays are accessed in C; for example, “valx + 10” will be evaluated to the value of variable ‘valx’ + 10 and “tabname[5]” will be evaluated to be the 5th element of an array named “tabname”. The name of the arrays can also be given by an input; for example “$s2[5]” will be evaluated to be the 5 element of the array whose symbol has been passed in inlet 2.

Type conversion from a float input to an integer is done automatically if the inlet is defined as an integer. Conversely, you can convert it explicitly by using functions (see below for the list of functions).

[expr] is also able to manipulate and output symbols. A symbol is written as a string with quotes around it, such as "hello", or as a symbol input $s# such as $s2. For more information about supported string manipulation functions see below.

[expr~] is designed to efficiently combine signal and control stream processing by vector operations on the basis of the audio block size. The operations, functions, and syntax for [expr~] is just like [expr] with the addition of the $v# variable for signal vector input (also numbered up to 100). The '$v' is needed at least for the first and main input, so:

The result of an expression from [expr~] is also an audio signal and multiple expressions up to 100 can also be defined via semicolons.

Note for MSP users: Currently in the MSP version all signal inputs should come first followed by other types of inlet. (There seems to be no way of mixing signal and other types of inlets in their order in Max/MSP, if you know otherwise, please let me know.) This means that signal inlets cannot be mixed with other types of inlets. For example, [expr~ $v1 + $f2 + $v3] is not legal. The second and third inlet should be switched and [expr~ $v1 + $v2 + $f3] should be used instead. In Pd you can mix them in any way you want.

The [fexpr~] object provides a flexible mechanism for building FIR and IIR filters by evaluating expressions on a sample by sample basis and providing access to prior samples of the input and output audio streams. When fractional offset is used, [fexpr~] uses linear interpolation to determine the value of the indexed sample. The operations, functions, and syntax for [fexpr~] is just like [expr] with the addition of $x# and $y# variables. The [fexpr~] object can access previous input and output samples up to the block size (64 by default).

$x# is used to denote a signal input whose samples we would like to access. The syntax is $x followed by '#' (the inlet number up to 100) and the samples indexed by brackets, for example $x1[-1] specifies the previous sample of the first inlet. Therefore, if we are to build a simple filter which replaces every sample by the average of that sample and its previous one, we would use [fexpr~ ($x1[0] + $x1[-1]) / 2]. For ease of when the brackets are omitted, the current sample is implied, so we can write the previous filter expression as follows: [fexpr~ ($x1 + $x1[-1]) / 2]. To build IIR filters $y# is used to access the previous output samples indexed from -1 inside brackets. Note now that '#' here is used to define the outlet number.

The first inlet also needs to be a signal input ($x1), the output of [fexpr~] is a signal output and multiple expressions can also be defined via semicolons and each will correspond to an outlet that can be accessed by '$y#'. Note that '$v#' is not allowed in [fexpr~], so:


The operators [expr], [expr~] and [fexpr~] support (listed from highest precedence to lowest) are as follows:

~ One’s complement
* Multiply
/ Divide
% Modulo
+ Add
- Subtract
<< Shift Left
>> Shift Right
< Less than (boolean)
<= Less than or equal (boolean)
> Greater than (boolean)
>= Greater than or equal (boolean)
== Equal (boolean)
!= Not equal (boolean)
& Bitwise And
^ Exclusive Or
| Bitwise Or
&& Logical And (boolean)
|| Logical Or (boolean)
! Logical Not (boolean)

The supported functions for [expr], [expr~] and [fexpr~] are:

General Functions
Function
Name
# of
Args
Description
if() 3 conditional - if (condition, IfTrue-expr, IfFalse-expr) - in [expr~] if ‘condition’ is a signal, the result will be determined on sample by sample basis (added in version 0.4)
int() 1 convert to integer
rint() 1 round a float to a nearby integer
floor() 1 largest integral value not greater than argument (added in version 0.4)
ceil() 1 smallest integral value not less than argument (added in version 0.4)
float() 1 convert to float
min() 2 minimum
max() 2 maximum
abs() 1 absolute value (added in version 0.3)
if() 3 conditional - if (condition, IfTrue-expr, IfFalse-expr) - in [expr~] if ‘condition’ is a signal, the result will be determined on sample by sample basis (added in version 0.4)
isinf() 1 is the value infinite (added in version 0.4)
finite() 1 is the value finite (added in version 0.4)
isnan() 1 is the value non a number (added in version 0.4)
copysign() 1 copy sign of a number(added in version 0.4)
imodf() 1 get signed integer value from floating point number(added in version 0.4)
modf() 1 get signed fractional value from floating-point number(added in version 0.4)
drem() 2 floating-point remainder function (added in version 0.4)
fmod() 1 floating-point remainder function (added in version 0.4)

Power Functions
Function
Name
# of
Args
Description
pow() 2 raise to the power of {e.g., pow(x,y) is x to the power of y}
sqrt() 1 square root
exp() 1 e raised to the power of the argument {e.g., exp(5.2) is e raised to the power of 5.2}
ln() and log() 1 natural log
log10() 1 log base 10
fact() 1 factorial
erf() 1 error function (added in version 0.4)
erfc() 1 complementary error function (added in version 0.4)
cbrt() 1 cube root (added in version 0.4)
expm1() 1 exponential minus 1 (added in version 0.4)
log1p() 1 logarithm of 1 plus (added in version 0.4)
ldexp() 1 multiply floating-point number by integral power of 2 (added in version 0.4)

Trigonometric (all trigonometric functions here expect radian values)
Function
Name
# of
Args
Description
sin() 1 sine
cos() 1 cosine
tan() 1 tangent
asin() 1 arc sine
acos() 1 arc cosine
atan() 1 arc tangent
atan2() 2 arc tangent of 2 variables
sinh() 1 hyperbolic sine
cosh() 1 hyperbolic cosine
tanh() 1 hyperbolic tangent
asinh() 1 inverse hyperbolic sine
acosh() 1 inverse hyperbolic cosine
atan() 1 inverse hyperbolic tangent
hypot() 2 euclidean distance function (0 to this location)

Table Functions

Function
Name
# of
Args
Description
size() 1 size of a table
sum() 1 sum of all elements of a table
Sum() 3 sum of elements of a specified boundary of a table
avg() 1 averages all elements of a table
Avg() 3 averages elements of a specified boundary of a table

Acoustics Functions

Function
Name
# of
Args
Description
mtof() 1 convert MIDI pitch to frequency in hertz
ftom() 1 convert frequency in hertz to MIDI pitch
dbtorms() 1 convert db to rms
rmstodb() 1 convert rms to db
powtodb() 1 convert power to db
dbtopow() 1 convert db to power

String Manipulation Functions (the ones that return a symbol only work for [expr])
Function
Name
# of
Args
returns Description
symbol(int/float/symbol [, int X, int Y])
sym(int/float/symbol)
0, 1, 2, or 3 symbol symbol formatted based on the type of the input

0 argument will result in an empty symbol

1 argument will produce a symbol from string/symbol, int, float, according to the %s, %d, %f syntax in sprintf() respectively

2 argument (sym, X) will produce a symbol from string/symbol, int, float, according to the %Xs, %.Xd, %.Xf syntax in sprintf() respectively

3 arguments (sym, X, Y) will produce a symbol from string/symbol, int, float, according to the %Y.Xs, %Y.Xd, %Y.Xf syntax in sprintf() respectively
var(symbol) 1 float var() will treat the value of the symbol argument as a variable name and returns the value of the variable
strlen(symbol) 1 int length of symbol
tolower(symbol) 1 symbol convert all upper-case letters of the string to the corresponding lower-case letters
tonlower(symbol, int) 2 symbol convert n'th character of the string from upper-case letter to the corresponding lower-case letter
toupper(symbol) 1 symbol convert all lower-case letters of the string to the corresponding upper-case letters
tonupper(symbol, int) 2 symbol convert n'th character of the string from lower-case letter to the corresponding upper-case letter
strcat(symbol, symbol, ...) var symbol Concatenate two or more strings
strncat(symbol, symbol, int) 3 symbol Contatenate the first string, by no more than n characters of the second string
strcmp(symbol, symbol) 2 int Compare two strings; return an integer greater than, equal to, or less than 0, according as the first string is greater than, equal to, or less than the second string.
strncmp(symbol, symbol, int) 3 int Compare no more than n characters of two strings; return an integer greater than, equal to, or less than 0, according as the first string is greater than,
strcasecmp(symbol, symbol) 2 int similar to strcmp() but ignore case of the letters
strncasecmp(symbol, symbol, int) 3 int similar to strncmp() but ignore case of the letters
strpbrk(symbol, symbol) 2 symbol In the first string locate the first occurrence of any character in the second (character set) string and return a substring of the first string starting with the found character. If no characters from second string is found return 0;
strspn(symbol, symbol) 2 int return the string array index of the first character of the first string which is not in the second (charset) string, else return the index of the first null character.
strcspn(symbol, symbol) 2 int return the string array index of the first character of the first string which is also in charset, else return the index of the first null character.


CHANGELOG:

version 0.58

version 0.57

version 0.56

version 0.55

version 0.5

version 0.4