what :
Home > Search > when

Objectspage : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
brownian Abstraction random based object
Random generator based on ¬brownian movements". Outputs random numbers between min and max excluding max. The distance between two random numbers is determined by the brownian factor . When this factor is 1, "brownian" behaves like an ordinary random generator. When the factor is O, always the same number is repeated.
bufedit~ External It enables you to modify data in buffer~
It enables you to modify data in buffer~. It will be useful for making weird sound or impulse response. Don't ask me why don't you use peek~... I didn't know peek~ untill I've finished coding of bufedit~. bufedit~ has advantages and disadvantage with peek~. Advantage of bufedit~ is a lot of supported messages, for example, it is possible to make a window with a few command without Uzi, or when performing convolution and if impulse response is static or less changes, bufedit~'s fft command will help you with computational expences. And unlike peek~, bufedit~ can store value greater than 1. Disadvantage is that I strongly believe DZ's programming skill is superior than mine and I've not tested bufedit~ much yet (it seems stable for me). So please use bufedit~ at your own risk, I don't owe any responssibility to disbenefit caused by using bufedit~.
cda External Python script which gives audio CD support for Windows : import .cda tracks into [buffer~], retrieve CD infos from CDDB (artist, title, track names...). Requires [Pyext] external, Python 2.4.x and some additional python modules.
Warning ! For Python lovers only (or for CD fanatics) :

As there's still no cd support in max/Msp for windows, it is an attempt to provide one. It is written in python and runs through the great [pyext] object, which is a python wrapper for max/Msp, by Thomas Grill. Luckily, it's really stable, and relatively fast ! When the device is "cold", it takes 5s for importing 2 megs and about 30s for a 4-5min file. Same or faster than Sound Forge, and already in your buffer~ ! Last but not least, it doesn't interrupt MSP process while importing...
changes External changes monitors an arbitrary list, watching for a change in specified elements.
changes monitors an arbitrary list, watching for a change in specified elements. When a change is detected, the list seen in the inlet is sent to the outlet and it is remembered for comparison with subsequent lists.
check-octaves Abstraction Checks whether an interval list sums up to an octave
Checks whether an interval list sums up to an octave and outputs the list only when it does not contain any hidden octaves..
choice-rhythm Abstraction rythm generator
First a supply of rhythmical values (ED = entry delays) is generated. Whenever a bang is sent to the rightmost inlet, a choice of the indices from this supply is made which serves as a choice list for a random ("alea") selection of ED«s.
closebang External Send a bang when a Patcher window is about to be closed
coef_bpass3~ Abstraction bandboost or band-cut filter
This abstraction is designed to calculate coefficients for biquad~ which create a bandboost or band-cut filter. It does not contain a biquad~ and must therefore be connected to one. Connecting it to any other object is meaningless. Like the band-pass filter, it also has a center frequency and bandwidth (here the bandwidth is expressed in octaves instead of Hz). However, unlike a bandpass or notch filter it lets all frequencies pass through, and only attenuates or boosts the frequencies inside it’s band. The boost or cut is defined in decibels (positive for a boost/gain, and negative for a cut/ attenuation). Remember that a signal’s amplitude is doubled when it is boosted by 6dB and halved when it is attenuated by 6dB.
coef_hlshelf2~ Abstraction double shelving boost /cut filter
This abstraction is designed to calculate coefficients for biquad~ which create a double shelving boost /cut filter. It does not contain a biquad~ and must therefore be connected to one. Connecting it to any other object is meaningless. This filter is a combination of a high and a low shelf filter. All in all, this abstraction creates the parameters for three shelves, low mid-range and high, which can be attenuated or boosted independently. The two transitions between the three shelves can also be finetuned by defining their transition width in Hertz. The cut or boost for the three segments (low, middle, high) is defined in decibels (positive for a boost/gain, and negative for a cut/attenuation). Remember that a signal’s amplitude is doubled when it is boosted by 6dB and halved when it is attenuated by 6dB.
conformpath External Convert paths of one pathtype and/or pathstyle to another
conformpath can be used to convert paths between the old colon style format and the new slash style--these are the "pathstyles". It can also be used to conform paths to either absolute, relative, boot volume relative, or Cycling 74 folder relative--these are the "pathtypes". The "max" style will use whatever style the currently running version of Max uses to pass paths between objects. The "native" style will use whatever format is used by the currently running operating system to specify paths. There is only an explicit "native_win" pathstyle since the native Macintosh pathstyle is the same as the "colon" path style. Note that when working with native paths, only absolute paths will be valid for the operating system. The default pathstyle is "max", and the default pathtype is "ignore".
cos~ External cosine function
cosine function. cos~ produces a signal which is the cosine of its input multiplied by 2 pi. This produces a listenable sine wave when driven by a phasor~ at audio rates.
cresc-decresc Abstraction crescendo / decescendo generator
Transition between a start velocity and an end velocity within a certain time. When the start velocity is bigger than the end velocity, a decrescendo will be obtained. If the end velocity is bigger than the start velocity, it will result in a crescendo. A bang is sent out the right outlet when the dynamic transition is over.
curve Javaclass (mxj) more accurate curve~
a Java/mxj~ implementation of curve~ which is more linear when the curve value is 0. Paradoxically, this is based on the curve~ object from the pd cyclone project which itself is a "port" of most objects from Max/MSP!
curve~ External Exponential ramp generator
curve~ is similar to line~. It produces a signal that goes from an initial to target value over a specified number of milliseconds. However, it produces non-linear ramps using a piecewise approximation of an exponential function. You specify the parameter to this exponential function in the curve~ object's right inlet. Values from 0 to 1 produce an "exponential" curve when increasing in value and values from -1 to 0 produce a "logarithmic" curve. The closer to 0 the curve parameter is, the closer the curve is to a straight line, and the farther away the parameter is from 0, the steeper the curve. curve~ can also accept a list of up two or three arguments (the previous curve parameter is used if there are two arguments), or a list with two or more value, time, parameter triples. curve~ is limited to 42 such triples in a single list. The object's approximation of the exponential becomes better when the vector size is smaller, but the object also becomes more computationally expensive.
cv.jit.stddev External Computes the standard deviation of the incoming matrices.
Computes the standard deviation of the incoming matrices. The standard deviation is simply the square root of the variance, so the same result can be obtained with cv.jit.variance and a jit.op object. The standard deviation is a measure of how much sample values vary from the mean, or in other words, how wide the distribution on either side of the mean is. About 65% of sample values fall within one standard deviation of the mean, whereas 95% are within twice that value. This measurement is very useful when it comes to setting bounds or threshold values, for instance in a background subtraction operation. If the mean value of a background pixel is 50, and the standard deviation is 10, then a pixel valued at 80 would be considered foreground. However, if the standard deviation is around 30, there is a good chance that it belongs to the background.
page : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

Libraries
FuzzyLib
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='139'Alain Bonardi
Isis Truck
When manipulating human knowledge such as perception, feelings, appreciation, veracity of facts, etc., the classical logic that recognize only two truth degrees (true or false) is not always the most suitable.

To solve this problem, more than two degrees are considered in the non-classical logics. The fuzzy logic is one of these logics.

In this logic, facts are represented through membership functions: when the membership value is equal to 1 the fact is exactly true; when it is equal to 0 the fact is exactly false; in between there is an uncertainty about the veracity of the fact.

These membership functions are called "fuzzy subsets". They can be of different shapes: gaussian, trapezoidal, triangular, etc.

Thus the aim of the fuzzy logic is to propose a theoretical framework for the manipulation - representation and reasoning - of such facts.

The Fuzzy Lib library implements all the tools that are necessary to handle this manipulation: representation of a fuzzy subset (among them are the fuzzification, defuzzification and partitioning), reasoning process (generalized modus ponens, fuzzy implications, t-norms, t-conorms, etc.).

This version 1 of the Fuzzy Lib enables to implement fuzzification, uncertain reasoning and defuzzification for any number of data in the framework of Max/MSP environment.

4855 objects and 135 libraries within the database Last entries : December 23rd, 2023 Last comments : 0 0 visitor and 100354610 members connected RSS
Site under GNU Free Documentation License