make a matrix with size 100 x 1 with the same elements

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 Comment

Use matlab's 'repmat' function. See its documentation at:
http://www.mathworks.com/help/matlab/ref/repmat.html

Sign in to comment.

Answers (1)

H = blanks(100) .';
H(:) = 'A';

2 Comments

Like written Roger in comment:
repmat('A',100,1)
Yes, I am presenting an alternative. There are other methods as well, such as
H = char('A' * ones(100,1));

Sign in to comment.

Categories

Asked:

on 7 Oct 2013

Commented:

on 7 Oct 2013

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!