Summation of an array
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Barry Allen
el 5 de Feb. de 2020
Comentada: Barry Allen
el 6 de Feb. de 2020
How can i code this in matlab?
0 comentarios
Respuesta aceptada
JESUS DAVID ARIZA ROYETH
el 5 de Feb. de 2020
if length(P) and length(Y) is N:
x=sum(P.*Y)
in another case:
N=5; %set any value for N
x=sum(P(1:N).*Y(1:N))
Más respuestas (0)
Ver también
Categorías
Más información sobre Symbolic Math Toolbox 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!