No BSD License  

Highlights from
mapcell

Be the first to rate this file! 0 Downloads (last 30 days) File Size: 1.65 KB File ID: #3776

mapcell

by D. Simms

 

23 Jul 2003 (Updated 25 Jul 2003)

MAPCELL like cellfun, but fun can be anything feval'able.

| Watch this File

File Information
Description

function [D] = mapcell( fun, C )

Overview:

for each element of C, fun is evaluated with that element as
  the argument. Optional arguments passed to mapcell are also
  passed along to fun. The code is shorter than the english to
  describe it:

    D = cell(size(C));
    for k=1:prod(size(C))
      D{k} = feval( fun, C{k}, varargin{:} );
    end

  If all of the outputs D are exactly 1-by-1, D is converted to
  from a cell array to an array.
inputs:

  fun: some feval'able form, like a function handle or an inline
       object, or the name of function. note that all of the
       cellfun strings work identically: 'isreal', 'isempty',
       'islogical', 'length', 'ndims', 'prodofsize', 'size',
       'isclass'

  C: the cell array in consideration
outputs:

  D: a cell or double array the same size as C.

  S: if D is a cell array, S is prod(size(D))-by-
     max(mapcell(@ndims,D)) where the rows are the size of the
     corresponding element in D. if D is a regular array S is
     ones(size(D)).

MATLAB release MATLAB 6.0 (R12)
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Please login to add a comment or rating.
Tag Activity for this File
Tag Applied By Date/Time
structures D. Simms 22 Oct 2008 07:05:19
cell arrays D. Simms 22 Oct 2008 07:05:19
cellfun D. Simms 22 Oct 2008 07:05:19
utilities D. Simms 22 Oct 2008 07:05:19

Contact us at files@mathworks.com