Azzera filtri
Azzera filtri

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

1 visualizzazione (ultimi 30 giorni)
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.

Risposta accettata

Ji Hoon Jeong
Ji Hoon Jeong il 4 Set 2018
for i = [4, 12, 24, 36]
feval(symengine,'combinat::bell',i);
end
Is this what you looking for?
  8 Commenti
jaah navi
jaah navi il 5 Set 2018
Modificato: Walter Roberson il 5 Set 2018
For the code
temp = arrayfun(@(i) feval(symengine, 'combinat::bell', i), [4 5 6], 'uniform', 0);
output = vertcat(temp{:});
I am getting the result as output =
15
52
203.
Could you please help me how to get what are the partitions present in those outputs 15,52,203 with respect to their corresponding numbers.

Accedi per commentare.

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by