Creating table with scalars in one column and vectors in another
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Yonathan Zarkovian
il 1 Mag 2022
Commentato: Star Strider
il 4 Mag 2022
Hi,
I'd like to create a table that contains scalars in the first column and vectors (arrays) in the second column. For example:

However, MATLAB will only let me add tables or cell arrays into an existing table.
I'd appreciate your help.
Thanks.
0 Commenti
Risposta accettata
Star Strider
il 1 Mag 2022
Try something like this —
theta = [30; -15];
Dm = [1 0 -1; 0 0 -1];
Data = table(theta, Dm)
.
2 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!