Program sum in matlab
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Mohamed Musni
am 22 Jan. 2018
Kommentiert: Mohamed Musni
am 22 Jan. 2018
Any help for write this program will be great. Thank
you
0 Kommentare
Akzeptierte Antwort
Birdman
am 22 Jan. 2018
Here is a starting point for you. Use symsum function from Symbolic Toolbox. See the example:
m=5;
P=sym('P',[1 m]);
t=sym('t',[1 m]);
q=sym('q',[1 m]);
syms k h
fun=sum(symsum((P+(t.*q/2).*h)./(t),k,1,m))
The rest is yours to do.
3 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Calculus 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!