Points on a product manifold are structures. Points on a power manifold are cells. Here is an example:
n = 5; r = 3; m = 10;
M = productmanifold(struct( 'X', spherefactory(n), 'Y', euclideanfactory(n, r) ));
N = powermanifold(M,m);
P = N.rand()
% P is a point on N. It is a cell containing m entries. Each entry of this cell is a structure with fields X and Y. For exaple, the X property (unit vector) of the 4th entrty can be accessed via:
P{4}.X