make a matrix with size 100 x 1 with the same elements
Mostrar comentarios más antiguos
I wanna to make a matrix with size 100 x 1 which all its elements are " A " ( character) ?
the same as this:
H=['A';'A';'A';'A'............];
1 comentario
Roger Stafford
el 7 de Oct. de 2013
Editada: Roger Stafford
el 7 de Oct. de 2013
Use matlab's 'repmat' function. See its documentation at:
http://www.mathworks.com/help/matlab/ref/repmat.html
Respuestas (1)
Walter Roberson
el 7 de Oct. de 2013
H = blanks(100) .';
H(:) = 'A';
2 comentarios
Andrei Bobrov
el 7 de Oct. de 2013
Like written Roger in comment:
repmat('A',100,1)
Walter Roberson
el 7 de Oct. de 2013
Yes, I am presenting an alternative. There are other methods as well, such as
H = char('A' * ones(100,1));
Categorías
Más información sobre Creating and Concatenating Matrices 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!