Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
そのような「n」ベクトルの平均を計算する必要があります。
Gxx_avg = (Gxx1+Gxx2+Gxx3+Gxx4+Gxx5+Gxx6+Gxx7+Gxx8)/8;
問題は、それらの数が毎回異なるということです => n =, 1,2,3,4,....n 結局、Gxx_avg も VECTOR でなければなりません。ありがとう!
各ベクトルを単一の行列の列にして、mean関数を使用できます。
mean
例:
G = [Gxx1 Gxx2 Gxx3]; Gavg = mean(G,2);
これは次元 2 の平均をとります。つまり、各行がその行のすべての値の平均になります。