sum, vector elements, except i-th
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
mehrdad asadi
el 8 de Jul. de 2015
Comentada: mehrdad asadi
el 8 de Jul. de 2015
hi,
how can I sum vector elements, say v = rand(1,30), except 12th one?
thanks,
0 comentarios
Respuesta aceptada
Mona
el 8 de Jul. de 2015
You can always do the sum, then subtract that single element, 12th, from the sum.
v = rand(1,30);
sum_except12=sum(v)-v(12)
Más respuestas (1)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices 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!