putting column vectors into a table
Mostrar comentarios más antiguos
If i have various column vectors, such as A = [1;2;3] B = [4;5;6] C = [7;8;9]
how would i put A B & C into a table. Meaning, A is the first column of the table, B is the second column, and C is the third column of the table.
Respuestas (1)
Walter Roberson
el 22 de Abr. de 2018
table(A, B, C)
2 comentarios
Shafiqullah Shah
el 22 de Abr. de 2018
Walter Roberson
el 22 de Abr. de 2018
You accidentally created a variable named table
Alternately you might be using a version of MATLAB that is too old to have table objects.
Categorías
Más información sobre Tables en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!