Issue with plotting. I put it in a vector but it returns a scalar once it goes through the calculation
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ash matlab
el 4 de Abr. de 2020
Comentada: Ash matlab
el 4 de Abr. de 2020
Hi everyone
I wanted to plot this program. My N ranges from 1 to 60 and the function is set below it. However it only runs when N=60. Like i don't get a vector from er
%%%%%%%%%%%
x = 10;
N = [1:60]
sumN = x.^N/factorial(N);
er =abs(sumN-exp(x))/exp(x);
plot(N,er,'*')
0 comentarios
Respuesta aceptada
Tommy
el 4 de Abr. de 2020
Add a dot before the division symbol in the third line for element-wise division:
x = 10;
N = [1:60]
sumN = x.^N./factorial(N);
er =abs(sumN-exp(x))/exp(x);
plot(N,er,'*')
Más respuestas (0)
Ver también
Categorías
Más información sobre Line Plots 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!