search for: particlular

Displaying 3 results from an estimated 3 matches for "particlular".

Did you mean: particluar
2010 May 04
0
Quicktime audio export atom
...de for creating and using this export Atom I would be very grateful. I have one working to export to .wav, but the client wants .ogg export. I made the .wav one using the dialogue box (and saving out the Atom generated), but doing this with the .ogg dialogue doesn't appear to work properly. In particlular the "audio options" button does nothing, and the exported files have 6 tracks. Hoping someone can assist. Regards Jeremy -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/ogg-dev/attachments/20100504/195256b3/attachment.htm
2004 Nov 05
1
idea (PR#7345)
Full_Name: Dan B Version: 2 OS: Fedora 2 Submission from: (NULL) (80.6.127.185) It would be great if something like currentPlot <- edit(par) allowed dynamic changes to the 'currentPlot', which I am using as some kind of 'magic' keyword in the above context. i.e. the value of 'currentPlot' is actually an alias for whatever the current graphical object is. calling
2004 Nov 04
3
Finding out the number of times a loop has run
Hi, Suppose I have: for(i in 1:100000) rnorm(100000) (just a fake example, as my actual example is too long) Is it possible to get the loop to print out i each time it has run? Something like: for(i in 1:100000) { print(i) rnorm(100000) } will only print i after the loop is completed. But if I want to print out i whenever it re-enters the loop, is it possible (so I know how