フィルターのクリア

Plot nested loop data

1 回表示 (過去 30 日間)
androidguy
androidguy 2016 年 10 月 23 日
回答済み: KSSV 2016 年 10 月 23 日
Hello everyone. I have a simple question to ask since I am a bit confused. I have a following dummy code like this -
iter = 1e2;
myvar= zeros(500,iter);
for k = 1:iter
for ii=1:500
%body of my code
myvar(ii, k) = myvar(ii) + det (I_mat + var(ii) * A_mat);
end
end
At the end of code, the variable "myvar" will store all the iterations data in the matrix of size 500x100. So my question is, how can i find the mean of each column of "myvar" matrix and plot this data? Any advice is really appreciated.
Thank you,

採用された回答

KSSV
KSSV 2016 年 10 月 23 日
M= mean(myvar);
plot(M);
It plots the mean w.r.t indices.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by