create an envelope with function using random values
Hello to all kind of forum members.
I'm trying to create an envelope with a list of random numbers, generated every time that all random generators have produced random values.
Is there anyone who can clarify to me why the list created after zl group is not the same as output from function?
This creates me a lot of problems in displaying the envelope (and not just in the visualization!).
Secondly why the envelope does not automatically scale the points when a new time domain value is assigned?
Thank you!
anyone?
Hi MMA, when you are adding points to the function, all of the 'x' values of the points are absolute in time. The second outlet of function outputs "All points in line format". The reference page for line says you can send a list in and all of the 'x' values are ramp times between the points, so that is what function is sending.
Another way you can think of this is that with the set of points you are passing into function the order doesn't matter, but when going into the line object order matters very much.
I think the 'absolute' time aspect of adding points to function is also why "setdomain" isn't doing what you think it should.
Cheers,
Tyler