Creating a square matrix from 5 vectors

3 次查看(过去 30 天)
I have created 5 different vector and their name are R1,R2...
I want to use them to create the square matrix how can I do it

采纳的回答

Torsten
Torsten 2022-8-29
If the R's are row vectors:
A = [R1;R2;R3;R4;R5]
If they are column vectors:
A = [R1,R2,R3,R4,R5]

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by