how to create a second column of static values in a matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
basically i have a single column vector A of doubles. I want to add an entire column to the right of this vector with a string that is the same for all values.
Something like this:
A = [1; 2; 3; 4; 5; 6; 7];
I want to add a column to A in order to create B below
B =
1     'test'
2     'test'
3     'test'
4     'test'
5     'test'
6     'test'
7     'test'
The column of 'test' is what i wish to add
Thanks
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Hypothesis Tests en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!