On 14 February 2012 08:52, Dr. Alexander Klein
<alexander.kl...@math.uni-giessen.de> 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 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"

It seems like Smalltalk likes function names that end with "ect". I
didn't know this.

> accumulating results of repeated function evaluations (inject_into),

accumarray?

- Jordi G. H.

------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
Octave-dev mailing list
Octave-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/octave-dev

Reply via email to