Re: [OctDev] Cell array iteration à la Smalltalk (Ruby?)

2012-02-14 Thread Dr. Alexander Klein
Am 14.02.2012 um 15:05 schrieb Jordi Gutiérrez Hermoso: > These all seem like very trivial wrappers to cellfun. Or not even > cellfun, a lot of this can already be done with boolean indexing: > >A = pascal(3); >A(A>=3) ## "reject" or "select" Jordi, I just read your message again, and i

Re: [OctDev] Google Summer of Code 2012: Call for projects and mentors

2012-02-14 Thread c.
On 14 Feb 2012, at 23:15, Jordi Gutiérrez Hermoso wrote: > As part of our application for Google Summer of Code 2012 application, > >http://octave.org/wiki/index.php?title=GSoC_2012_application > > we ought to create a good-looking suggestion page for students that > says what projects are

Re: [OctDev] Google Summer of Code 2012: Call for projects and mentors

2012-02-14 Thread Michael Goffioul
2012/2/14 Jordi Gutiérrez Hermoso : > As part of our application for Google Summer of Code 2012 application, > >    http://octave.org/wiki/index.php?title=GSoC_2012_application > > we ought to create a good-looking suggestion page for students that > says what projects are good for students and who

[OctDev] Google Summer of Code 2012: Call for projects and mentors

2012-02-14 Thread Jordi Gutiérrez Hermoso
As part of our application for Google Summer of Code 2012 application, http://octave.org/wiki/index.php?title=GSoC_2012_application we ought to create a good-looking suggestion page for students that says what projects are good for students and who might mentor them: http://octave.org/wi

Re: [OctDev] Cell array iteration à la Smalltalk (Ruby?)

2012-02-14 Thread Dr. Alexander Klein
> Maybe a note can be added to the help text of this functions later > explaining that this functions allow for ease of read/write for users > that are familiar with smalltalk but that logical indexing is a more > octavish approach that may have better performace? Maybe it's not such a good idea a

Re: [OctDev] Cell array iteration à la Smalltalk (Ruby?)

2012-02-14 Thread Jordi Gutiérrez Hermoso
On 14 February 2012 10:55, Jordi Gutiérrez Hermoso wrote: > On 14 February 2012 10:35, Dr. Alexander Klein > wrote: >> >> accumulating results of repeated function evaluations (inject_into), >> > >> > accumarray? > >> Will this do something like > >> inject_into (@(x, y){x{:},rand(y)},num2cell(1:

[OctDev] Print command missing dependencies in Octave 3.4.0 in Mac OSX Lion

2012-02-14 Thread Daniel Clark
Hi, I noticed that when I try to print a figure to a file using the 'print' command, i get this response: print(figure(1),'test.jpg') warning: print.m: ghostscript not found in PATH warning: print.m: Ghostscript binary is not available warning: print.m: epstool binary is not available warning: p

Re: [OctDev] Cell array iteration à la Smalltalk (Ruby?)

2012-02-14 Thread Carnë Draug
On 14 February 2012 15:55, Jordi Gutiérrez Hermoso wrote: > On 14 February 2012 10:35, Dr. Alexander Klein > wrote: >> >> accumulating results of repeated function evaluations (inject_into), >> > >> > accumarray? > >> Will this do something like > >> inject_into (@(x, y){x{:},rand(y)},num2cell(1:

Re: [OctDev] New releases of NaN- and TSA - toolbox

2012-02-14 Thread Carnë Draug
On 14 February 2012 15:49, Carnë Draug wrote: > On 13 February 2012 21:31, Michael Goffioul > wrote: >> On Mon, Feb 13, 2012 at 1:17 PM, Alois Schloegl >> wrote: >>> There is not a strict dependency between these, most parts of these >>> toolboxes can be used independently. There is only a very

Re: [OctDev] Cell array iteration à la Smalltalk (Ruby?)

2012-02-14 Thread Jordi Gutiérrez Hermoso
On 14 February 2012 10:35, Dr. Alexander Klein wrote: > >> accumulating results of repeated function evaluations (inject_into), > > > > accumarray? > Will this do something like > inject_into (@(x, y){x{:},rand(y)},num2cell(1:10),{}) No, I suppose I misunderstood what you meant with "accumulate

Re: [OctDev] New releases of NaN- and TSA - toolbox

2012-02-14 Thread Carnë Draug
On 13 February 2012 21:31, Michael Goffioul wrote: > On Mon, Feb 13, 2012 at 1:17 PM, Alois Schloegl > wrote: >> There is not a strict dependency between these, most parts of these >> toolboxes can be used independently. There is only a very small overlap, >> namely >>  inst/sumskipnan.m >>  inst

Re: [OctDev] Cell array iteration à la Smalltalk (Ruby?)

2012-02-14 Thread Carnë Draug
On 14 February 2012 13:52, Dr. Alexander Klein wrote: > Dear list, > > I've finally managed to complete a number of functions that all iterate over > cell arrays and perform some action with cellfun. They can be used for > sorting out or finding elements (reject, select, detect), accumulating >

Re: [OctDev] Cell array iteration à la Smalltalk (Ruby?)

2012-02-14 Thread Dr. Alexander Klein
Am 14.02.2012 um 15:05 schrieb Jordi Gutiérrez Hermoso: > These all seem like very trivial wrappers to cellfun. Or not even > cellfun, a lot of this can already be done with boolean indexing: Ok, so it seems that the examples did little to elucidate what I wanted to do with these functions, name

Re: [OctDev] Cell array iteration à la Smalltalk (Ruby?)

2012-02-14 Thread Jordi Gutiérrez Hermoso
On 14 February 2012 08:52, Dr. Alexander Klein wrote: > I've finally managed to complete a number of functions that all > iterate over cell arrays and perform some action with cellfun. They > can be used for sorting out or finding elements (reject, select, > detect), These all seem like very tri

[OctDev] Cell array iteration à la Smalltalk (Ruby?)

2012-02-14 Thread Dr. Alexander Klein
Dear list, I've finally managed to complete a number of functions that all iterate over cell arrays and perform some action with cellfun. They can be used for sorting out or finding elements (reject, select, detect), accumulating results of repeated function evaluations (inject_into), as well a