MATLAB: Could anyone help me to solve the issue in the command line

bell

feval(symengine, 'combinat::bell', 4) I can run the command line with respect to 4.Could anyone help how to run the same command with respect to different numbers 12,24,36 instead of 4 in such a way the command needs to take the numbers in order.

Best Answer

for i = [4, 12, 24, 36]
feval(symengine,'combinat::bell',i);
end
Is this what you looking for?