Could anyone help me to solve the issue in the command line
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
jaah navi
el 4 de Sept. de 2018
Comentada: Walter Roberson
el 5 de Sept. de 2018
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.
0 comentarios
Respuesta aceptada
Ji Hoon Jeong
el 4 de Sept. de 2018
for i = [4, 12, 24, 36]
feval(symengine,'combinat::bell',i);
end
Is this what you looking for?
8 comentarios
jaah navi
el 5 de Sept. de 2018
Editada: Walter Roberson
el 5 de Sept. de 2018
Walter Roberson
el 5 de Sept. de 2018
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MuPAD en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!