I have the following Table of ODES:
Vector1=Range[-1,1,2/9]
ODEList1=Table[{theta[[i]]'[t]==Vector1[[i]]-K1/n*Sum[Sin[theta[[i]]-theta[[j]]],{j,1,Length[Vector1]}]},{i,1,Length[Vector1]}]
Is there an easy way to solve these with NDSolve?
What I have tried so far is the following:
K1=10;n=10;
System1=NDSolve[ODEList1,Table[Vector1[[i]],{i,1,Length[Vector1]}],{t,0,500}]
