concatenation of multiple vector variables and display in a single matrix variable
1 次查看(过去 30 天)
显示 更早的评论
Hello.. I am writing a matlab code for ecg signal processing. Here I get many intermediate results like R peak values, R peak locations, R-R distances, QRS width etc for each ecg in an ecg file. All these results are 1*x vectors. I want to combine all of them and display in a single matrix of say x*y at the end for easy analysis of all the results. ie, each row should represent different parameters like peaks, locetions, RR distance, QRS width, etc and each column should represent the sample number/time instances. Is it possible to achieve this? Can anybody tell me how can i do this? ( I hope my doubt is clear to you all.) Thank you.
0 个评论
采纳的回答
James Tursa
2015-9-16
E.g.,
R_values = 1 x X vector of peak values
R_locations = 1 x X vector of peak locations
R_distances = 1 x X vector of distances
etc
R = [R_values; R_locations; R_distances; etc]'; % an X x Y matrix of results
7 个评论
Stephen23
2015-9-16
编辑:Stephen23
2015-9-16
The single quote ' is a complex conjugate transpose, while the period and single quote .' is a non-conjugate transpose. It is a good habit to use the non-conjugate transpose unless you specifically need a complex conjugate transpose for some linear algebra.
You can read more about the complex conjugate transpose here:
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!