multidimensional cell-based bsxfun generalization

Preliminary M-ary singleton expansion based upon cell arrays sequentially sent to user function.
2K download
Aggiornato 24 mar 2009

Nessuna licenza

Preliminary release of a generalization of bsxfun to cell arrays of arbitrary length, arbitrary number and arbitrary contents.

The cell arrays may contain virtually any matlab object: numbers, arrays, strings, structures etc.

The user supplied function should handle the inputs as presented (using a try-catch block preferably) or return an identifiable default value such as nan, [] or 0 etc. on failure.

Example:
x = {rand(20), rand(20), rand(20)};
y = {rand(20), rand(20)};
z = {rand(20), rand(20)};

Save the following file myFunc1.m:
function res = myFunc1(varargin)
res=[];
try,
res=varargin{1}*varargin{2}*varargin{3};
end

xyz=mAryCellFcn(@myFunc1, x, y, z)

this results in a cell array of size 3x2x2 composed of 20x20 doubles.

example:
by choosing various values of N from 100 to 1000 and setting

x={1,2,3,4,.....N}
y=x;

and saving the following as myFunc3.m:
function res = myFunc3(varargin)
res=[];
try,
res=varargin{1}*varargin{2};
end

the execution time is as given in the screen shot. The time on the order of 25 seconds for N=1000 results from allocating 1,000,000 empty cells and then populating them by calling myFunc3 one million times. 1000 times for each of x, and 1000 times for each of y.

Acknowledged limitations:
This function will not handle anonymous functions.
Additional error trapping is probably useful.
Other limitations are TBD.

Additional examples are available by invoking mAryCellFcn with no inputs.

I'd like constructive criticisms and suggestions rather than pompous, self-important ramblings.

Cita come

michaelB brost (2024). multidimensional cell-based bsxfun generalization (https://www.mathworks.com/matlabcentral/fileexchange/23409-multidimensional-cell-based-bsxfun-generalization), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2007a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Random Number Generation in Help Center e MATLAB Answers
Tag Aggiungi tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0