Could anyone help me to solve the issue in the command line
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
jaah navi
am 4 Sep. 2018
Kommentiert: Walter Roberson
am 5 Sep. 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 Kommentare
Akzeptierte Antwort
Ji Hoon Jeong
am 4 Sep. 2018
for i = [4, 12, 24, 36]
feval(symengine,'combinat::bell',i);
end
Is this what you looking for?
8 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MuPAD finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!