필터 지우기
필터 지우기

Creating a square matrix from 5 vectors

조회 수: 3 (최근 30일)
Berkay
Berkay 2022년 8월 29일
답변: Torsten 2022년 8월 29일
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