[Csnd] Questions about phasor, reading, writing tables etc.
Date | 2014-04-20 18:06 |
From | Askwazzup |
Subject | [Csnd] Questions about phasor, reading, writing tables etc. |
|
Date | 2014-04-20 19:13 |
From | joachim heintz |
Subject | Re: [Csnd] Questions about phasor, reading, writing tables etc. |
hi - is this an example from the floss manual? if so, could you tell which one? it would be easier to know the context. best - joachim Am 20.04.2014 19:06, schrieb Askwazzup: > |
Date | 2014-04-20 19:17 |
From | Askwazzup |
Subject | [Csnd] Re: Questions about phasor, reading, writing tables etc. |
Yes, it's the "EXAMPLE 03D08_RecPlay_ak_signals.csd ". I Changed the phasor and oscilator frequency value from 1/5 to 1/5000 when i was experimenting with it. -- View this message in context: http://csound.1045644.n5.nabble.com/Questions-about-phasor-reading-writing-tables-etc-tp5734470p5734478.html Sent from the Csound - General mailing list archive at Nabble.com. Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2014-04-20 19:42 |
From | jpff@cs.bath.ac.uk |
Subject | [Csnd] Re: |
Attachments | None |
Date | 2014-04-20 19:55 |
From | Askwazzup |
Subject | [Csnd] Re: Re: |
jpff wrote > An explicit seed gives repeatable results a seed from the clock however > gives different sequences > (strictly from a different place in the sequence). Read the manual > for seed. Repeatable in what way? Now that i think about it, some time ago, when i played with the random opcode, my score would generate the same numbers every time i would start it, but in this case it's always different. (i read the section about seed in the manual, but it's very brief and doesn't tell much to a novice). -- View this message in context: http://csound.1045644.n5.nabble.com/Questions-about-phasor-reading-writing-tables-etc-tp5734470p5734481.html Sent from the Csound - General mailing list archive at Nabble.com. Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2014-04-20 19:57 |
From | Victor Lazzarini |
Subject | Re: [Csnd] |
It’s different because of the use of “seed”. http://csounds.com/manual/html/random.html ======================== Dr Victor Lazzarini Senior Lecturer NUI Maynooth, Ireland victor dot lazzarini at nuim dot ie On 20 Apr 2014, at 19:55, Askwazzup |
Date | 2014-04-20 20:07 |
From | Askwazzup |
Subject | [Csnd] Re: Re: |
Ah yes, now i see, but then the description is pretty confusing with the whole "predictable results" in the description. -- View this message in context: http://csound.1045644.n5.nabble.com/Questions-about-phasor-reading-writing-tables-etc-tp5734470p5734483.html Sent from the Csound - General mailing list archive at Nabble.com. Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2014-04-20 20:23 |
From | joachim heintz |
Subject | Re: [Csnd] Re: Re: |
sorry, but i do not agree. the manual (reference) states (http://www.csounds.com/manual/html/seed.html): "Use of seed will provide predictable results from an orchestra using with random generators, when required from multiple performances. When specifying a seed value, ival should be an integer between 0 and 2^32. If ival = 0, the value of ival will be derived from the system clock. " in other words: whenever you set the global seed to a value except 0, you will get the same random values from an opcode like random, randomi etc. it will still "look like random", but because the pseudo-random-generator always starts at the same value (seed), the sequence of pseudo-random numbers is always the same. this is meant by "will provide predictable results". only when you set seed 0, you will seed from the current clock, so it's very unlikely that you get the same seed when running csound twice. joachim Am 20.04.2014 21:07, schrieb Askwazzup: > Ah yes, now i see, but then the description is pretty confusing with the > whole "predictable results" in the description. > > > > -- > View this message in context: http://csound.1045644.n5.nabble.com/Questions-about-phasor-reading-writing-tables-etc-tp5734470p5734483.html > Sent from the Csound - General mailing list archive at Nabble.com. > > > Send bugs reports to > https://github.com/csound/csound/issues > Discussions of bugs and features can be posted here > To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" > > > > Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2014-04-20 20:32 |
From | Rory Walsh |
Subject | Re: [Csnd] Re: Questions about phasor, reading, writing tables etc. |
Starting from the top: <------------------------- *why kr cycle and not audio cycle?* Because this table is used to hold k-rate data, not audio data. <-------------- *why do we need partials for the aSnd?* Why not? Sounds more interesting than a single sine wave.. <------------------------------------------ *how does it work and what does "provide predictable results from an orchestra" mean?* I think John just explained this... <------------------------------------- *how does the phasor work, how does it index different table values, how do i know what frequency to use ?* A phasor produces a signal that moves from 0 to 1 in a specified period. If the frequency is 1 it will do this once every second. The values it produces can be used to index samples from a table. You'll notice that the imode parameter of the table opcodes used are 1. This means that Csound will normalise the table length to 1 meaning the index of the first sample is 0 a1 tab 0, 1, 1 a1 = the first sample in the table a1 tab 1, 1, 1 a1 is now the last sample in the table a1 tab .5, 1, 1 a1 is now the middle-most sample If you don't set imode to 1 you need to specify the actual sample number. And this means you need to know exactly how many samples are contained in the table. If you don't set imode=1, then you need to multiply the phasor output by the number of sample in the table. If the table has 100,000 sample you would need to do this aIndx phasor iFreq a1 tab aIndex*100000, 1 Bottom line here is it's easier to set imode to be 1 :) With regards to frequency.. If your table contains a 1 second sample that was recorded at 44.1kz, then you need to set your phasor frequency to 1. That would insure that you read 44100 samples every second(phasor will go from 0-1 once a second) which is the same rate the sample was recorded at. Now if you have a 2 second sound you obvioulsy need to change the frequency. In this case it becomes 1/(ftlen/sr) where ftlen is the length of the table in samples. So it if the table length is now 88200(two seconds) the frequency of the phasor needs to be 1/2 instead of 1. If you use 1/(ftlen(tableNUmber)/sr) you can't go wrong: ifTableNumber = 4; FUNCTION TABLE 4 a1 phasor 1/(ftlen(ifTableNumber)/sr) tablew aFreq, aindx, giControl, 1;<----------------- *why do we use aFreq and not aSnd? Do we only write frequency information?* Yes. This example shows how to write k-rate data to a table. So in this example random frequencies are being written to function table 1. If you passed aSnd to the table you would record the actual sound being produced by the oscillator and not the frequency as it changes over time. kFreq poscil 1, 1/5000, giControl;<----------------------- *how does the frequency work, does it scan 1/5000 points of the table in a second* The reason this example uses 5*kr is so that -5* seconds of k-rate samples will be recorded. kr represents the number of k cycles every second so multiplying it by 5 will gives use 5 second of k-rate values. Here's a simple example of playing a soundfile back using a phasor. Just make sure the sound file is in the same directory as the .csd file: |
Date | 2014-04-20 21:21 |
From | Askwazzup |
Subject | [Csnd] Re: Questions about phasor, reading, writing tables etc. |
Thank you rory, that was a work of art, the only part that is a bit confusing is: "ifTableNumber = 4; FUNCTION TABLE 4 a1 phasor 1/(ftlen(ifTableNumber)/sr)" My table length is 6891, so if i divide it by 44100 i get 1/0.5 = 2 which is half a cycle, instead of 0.5, which would indicate 2 cycles? Also, i tried out using the lfo opcode instead of phasor. It kind of works it seems, at least i can capture a part of the information in a backward way, but i had to use 1/50 for the oscilator while 1/5 for the lfo and multiply the poscil frequency by 8. Though the artifacts are even more interesting. -- View this message in context: http://csound.1045644.n5.nabble.com/Questions-about-phasor-reading-writing-tables-etc-tp5734470p5734486.html Sent from the Csound - General mailing list archive at Nabble.com. Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2014-04-20 21:28 |
From | Rory Walsh |
Subject | Re: [Csnd] Re: Questions about phasor, reading, writing tables etc. |
>My table length is 6891, so if i divide it by 44100 i get 1/0.5 = 2 If I divide 6891 by 44100 I get 0.156258503? Oh wait, I see what you did. You need to divide by the number of samples, not the time in seconds! On 20 April 2014 22:21, Askwazzup |
Date | 2014-04-20 21:43 |
From | Askwazzup |
Subject | [Csnd] Re: Questions about phasor, reading, writing tables etc. |
Oh shoot, i meant 0.156258503. But then, why is printf... oh nevermind. So i did what you said kindx phasor 1/(ftlen(giControl)/sr) and then kFreq poscil 1, 1/(ftlen(giControl)/sr), giControl aSnd poscil .2, kFreq, giWave; play it outs aSnd, aSnd It plays the same sample, but with strange artifacts in the beginning. -- View this message in context: http://csound.1045644.n5.nabble.com/Questions-about-phasor-reading-writing-tables-etc-tp5734470p5734488.html Sent from the Csound - General mailing list archive at Nabble.com. Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2014-04-20 21:46 |
From | Rory Walsh |
Subject | Re: [Csnd] Re: Questions about phasor, reading, writing tables etc. |
Without the full code I'm not sure what you are doing. You reference: kindx phasor 1/(ftlen(giControl)/sr) But you don't use kindx anywhere in this code? kFreq poscil 1, 1/(ftlen(giControl)/sr), giControl aSnd poscil .2, kFreq, giWave; play it outs aSnd, aSnd On 20 April 2014 22:43, Askwazzup |
Date | 2014-04-20 21:52 |
From | Askwazzup |
Subject | [Csnd] Re: Questions about phasor, reading, writing tables etc. |
It's the same example in the top, i just used the original example from the floss manual, which has kindx instead of aindx -- View this message in context: http://csound.1045644.n5.nabble.com/Questions-about-phasor-reading-writing-tables-etc-tp5734470p5734490.html Sent from the Csound - General mailing list archive at Nabble.com. Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2014-04-20 22:04 |
From | Rory Walsh |
Subject | Re: [Csnd] Re: Questions about phasor, reading, writing tables etc. |
Do you get the same results if you use oscil instead of poscil? Sorry, it's getting late here and (un)fortunately for me people keep pouring me more wine :) Arggh!! On 20 April 2014 22:52, Askwazzup |
Date | 2014-04-20 22:13 |
From | jpff@cs.bath.ac.uk |
Subject | [Csnd] Re: |
Attachments | None |
Date | 2014-04-20 22:21 |
From | jpff@cs.bath.ac.uk |
Subject | [Csnd] Re: |
Attachments | None |
Date | 2014-04-20 22:24 |
From | Askwazzup |
Subject | [Csnd] Re: Questions about phasor, reading, writing tables etc. |
Ah, oscil does the trick it seems. I have learned ALOT since .. 8pm.. oh hell, time flies when i'm having fun . Almost feels like private tutelage. sorry, but i do not agree. the manual (reference) states (http://www.csounds.com/manual/html/seed.html): joachim-3 wrote > sorry, but i do not agree. the manual (reference) states > (http://www.csounds.com/manual/html/seed.html): > "Use of seed will provide predictable results from an orchestra using > with random generators, when required from multiple performances. > When specifying a seed value, ival should be an integer between 0 and > 2^32. If ival = 0, the value of ival will be derived from the system > clock. " > > in other words: whenever you set the global seed to a value except 0, > you will get the same random values from an opcode like random, randomi > etc. it will still "look like random", but because the > pseudo-random-generator always starts at the same value (seed), the > sequence of pseudo-random numbers is always the same. this is meant by > "will provide predictable results". > > only when you set seed 0, you will seed from the current clock, so it's > very unlikely that you get the same seed when running csound twice. Well it's hard for me to judge, since i'm not sure if i fall in the usual csound demographic, as i'm neither a programmer, neither a muscian/composer (aspiring to be all of those some day), neither an engineer, neither a student and am self taught. But that seems confusing to me (don't know about others) and a short comment by Victor - "It’s different because of the use of “seed”. " Made it clear as day. I have a dream, that if some day i will write a manual, before every verbose technical section, i will put a "for dummies" comment that sums it up in a few simple, hand holding sentences, as this seems to always work for me - especially for the past half year while learning linux. It seems every time i read blocks and blocks of texts and feel confused, a simple youtube comment with 5 words does it for me and then i can actually start reading those blocks of texts -- View this message in context: http://csound.1045644.n5.nabble.com/Questions-about-phasor-reading-writing-tables-etc-tp5734470p5734495.html Sent from the Csound - General mailing list archive at Nabble.com. Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2014-04-20 22:26 |
From | PMA |
Subject | Re: [Csnd] Re: |
Just be hearent. jpff@cs.bath.ac.uk wrote: > > Quoting Rory Walsh |
Date | 2014-04-20 22:27 |
From | Rory Walsh |
Subject | Re: [Csnd] Re: Questions about phasor, reading, writing tables etc. |
Welcome to Csound :) And apart from tutelage on the intricacies of DSP, you also get good recommendations on apple based brandy! On 20 April 2014 23:24, Askwazzup |
Date | 2014-04-20 22:37 |
From | Askwazzup |
Subject | [Csnd] Re: Questions about phasor, reading, writing tables etc. |
rory walsh wrote > Welcome to Csound :) And apart from tutelage on the intricacies of > DSP, you also get good recommendations on * > apple based brandy * > ! That would be too good, alas it's too late for that kind of advice, as i don't drink anymore (maybe a glass of wine), or use any other substances. These damn things seem to play with my nervous system -- View this message in context: http://csound.1045644.n5.nabble.com/Questions-about-phasor-reading-writing-tables-etc-tp5734470p5734498.html Sent from the Csound - General mailing list archive at Nabble.com. Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2014-04-20 22:42 |
From | Rory Walsh |
Subject | Re: [Csnd] Re: Questions about phasor, reading, writing tables etc. |
> These damn things seem to play with my nervous system In that case are you sure you want to learn Csound ;) Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2014-04-20 22:52 |
From | Askwazzup |
Subject | [Csnd] Re: Questions about phasor, reading, writing tables etc. |
rory walsh wrote >> These damn things seem to play with my nervous system > > In that case are you sure you want to learn Csound ;) He, he, masochism seems to run in my blood. Yes! by any means. Not only that, i want to write out the music i have in my head in csound score section, in Hz, in various tunings, complicated poly-rhythms and harmonies. If i survive that, i can survive anything -- View this message in context: http://csound.1045644.n5.nabble.com/Questions-about-phasor-reading-writing-tables-etc-tp5734470p5734500.html Sent from the Csound - General mailing list archive at Nabble.com. Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2014-04-20 23:02 |
From | Rory Walsh |
Subject | Re: [Csnd] Re: Questions about phasor, reading, writing tables etc. |
Excellent. That's we like to hear! Welcome on board.
On 20 Apr 2014 23:53, "Askwazzup" <aistiskaikaris@mail.com> wrote:
rory walsh wrote |