How to Plot a function that contains summation?
Mostrar comentarios más antiguos
How can I plot the attached two functions with limits from -pi to pi for different values of m ?
5 comentarios
Walter Roberson
el 20 de Sept. de 2021
The first equation has five open-bracket '(' but only four close-bracket ')'
Muhammad Qaisar Fahim
el 20 de Sept. de 2021
Walter Roberson
el 20 de Sept. de 2021
But in real-life, the volunteers are not able to assist with the first equation because they do not know where the missing ) should go.
Muhammad Qaisar Fahim
el 20 de Sept. de 2021
x=[-pi:0.1:pi]
figure
for alpha=1:10
m = (1:alpha).';
Function_5 = (pi/2) + sum(((2 .* (-1).^m-1) .* cos(m.*x) ./ (pi .* m.^2)),1);
plot(x, Function_5, 'displayname', "\alpha = " + alpha);
hold on
end
legend show
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Special Values en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


