multidimensional cell-based bsxfun generalization

Preliminary M-ary singleton expansion based upon cell arrays sequentially sent to user function.

Vous suivez désormais cette soumission

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.

Citation pour cette source

michaelB brost (2026). multidimensional cell-based bsxfun generalization (https://fr.mathworks.com/matlabcentral/fileexchange/23409-multidimensional-cell-based-bsxfun-generalization), MATLAB Central File Exchange. Extrait(e) le .

Catégories

En savoir plus sur Random Number Generation dans Help Center et MATLAB Answers

Informations générales

Compatibilité avec les versions de MATLAB

  • Compatible avec toutes les versions

Plateformes compatibles

  • Windows
  • macOS
  • Linux
Version Publié le Notes de version Action
1.0.0.0