Creating a square matrix from 5 vectors
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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
0 Commenti
Risposta accettata
Torsten
il 29 Ago 2022
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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!