Please make a function, where as input you get vector "x" and and vector "c", where in "c" vector you get indexes to sum. Example:

x=[-1 2 3 4 7 9]
c=[1 4 6]
y= x(1)+ x(4) + x(6) = -1 + 4 + 9 = 12

Solution Stats

556 Solutions

358 Solvers

Last Solution submitted on Jun 11, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...