Summation of an array
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Barry Allen
il 5 Feb 2020
Commentato: Barry Allen
il 6 Feb 2020
How can i code this in matlab?
0 Commenti
Risposta accettata
JESUS DAVID ARIZA ROYETH
il 5 Feb 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))
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Symbolic Math Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!