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 Kommentar

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

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Walter Roberson
Walter Roberson am 7 Okt. 2013
H = blanks(100) .';
H(:) = 'A';

2 Kommentare

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));

Melden Sie sich an, um zu kommentieren.

Kategorien

Gefragt:

am 7 Okt. 2013

Kommentiert:

am 7 Okt. 2013

Community Treasure Hunt

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

Start Hunting!

Translated by