Info
此问题已关闭。 请重新打开它进行编辑或回答。
For loop for the variable and plot
1 次查看(过去 30 天)
显示 更早的评论
Hello,
I have a matrix of correlations between particles (50 particles). I want to compute the correlations between them, at a distance l. That is, I need to compute V_a,V_(a+l).
If my variable V(a,a,b) where
a=1:50
b=1:100
Now I would like to make a loop and plot the following:
sum_a(V(a,a+l,:))
May I ask you to help me with this loop and the plot?
I have tried with this:
M=50;
for a=1:M
for l=a:M
V(a,l,:)=sum(V(a,a+l,:));
end
end
Unfortunately it doesn't work.
Thanks in advance for your reply.
4 个评论
Jan
2018-1-27
编辑:Jan
2018-1-27
@Auryn_: I could try to make a smart guess, what "M=\sum_{a}[V(a, a+k,:)]" might mean. But why do you use a magic notation instead of a syntax the readers can know already? I do not understand the description as text also: "a sum only in one of the variables".
I still do not understand, what you are asking for. "I want the interaction V(1,1+k,:) for a=1, etc." How could I know what "etc." means here? What should be continued how? a=2, or V(2, 1+k, :), or V(1, 2+k, :), or b=1? Please explain it again. Maybe the mathematical notation helps.
While this thread has been closed, explain it clearly in the other thread: https://www.mathworks.com/matlabcentral/answers/379186-loop-and-plot-in-2d.
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!