How can I combine all the column vectors in to one column vector
9 ビュー (過去 30 日間)
古いコメントを表示
I have different column vectors x1=104x1 , x2=104x1, x3=104x1 ..... xn =104x1
and I need to combine all the column vectors in to one column vector combine all the column vectors in to one column vector similar to below, and planning to calculate the Mean , Median ,etc.
Mean Median
x1 [104x1] ..........
x2 [104x1] ..........
x3 [104x1] ..........
..........
xn [104x1] ..........
0 件のコメント
採用された回答
madhan ravi
2019 年 9 月 27 日
編集済み: madhan ravi
2019 年 9 月 27 日
Don’t name variables , if you would have all the vectors as cells it would have been much easier.
X =[x1,x2...,xn]
Xmean = mean(X)
2 件のコメント
Guillaume
2019 年 9 月 27 日
I need to make a table like this,
Starting from what? If you indeed have numbered variables as you seem to indicate, then we need to go back one step to fix whatever created these numbered variables.
You should never have numbered variables.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!